56 lines
1.8 KiB
XML
56 lines
1.8 KiB
XML
<!--
|
|
Wt Configuration File.
|
|
|
|
The Wt configuration file manages, for every Wt application, settings
|
|
for session management, debugging, directory for runtime information
|
|
such as session sockets, and some security settings.
|
|
|
|
Settings may be specified globally, or for a single application path.
|
|
|
|
The path should be as configured in the Wt build process, where it
|
|
defaults to /etc/wt/wt_config.xml. It can be overridden in the environment
|
|
variable WT_CONFIG_XML, or with the -c startup option of wthttp.
|
|
|
|
The values listed here are the default values, which are used when the
|
|
declaration is missing or no configuration file is used.
|
|
-->
|
|
|
|
<server>
|
|
<application-settings location="*">
|
|
<web-sockets>true</web-sockets>
|
|
<progressive-bootstrap>false</progressive-bootstrap>
|
|
<head-matter user-agent=".*">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
|
|
</head-matter>
|
|
|
|
<behind-reverse-proxy>true</behind-reverse-proxy>
|
|
|
|
<trusted-proxy-config>
|
|
<original-ip-header>X-Forwarded-For</original-ip-header>
|
|
<trusted-proxies>
|
|
<!-- loopback -->
|
|
|
|
<proxy>127.0.0.1/8</proxy>
|
|
<proxy>::1/128</proxy>
|
|
|
|
<!-- link local -->
|
|
<!--
|
|
<proxy>169.254.0.0/16</proxy>
|
|
<proxy>fe80::/10</proxy>
|
|
-->
|
|
<!-- local -->
|
|
<!--
|
|
<proxy>10.0.0.0/8</proxy>
|
|
<proxy>172.16.0.0/12</proxy>
|
|
<proxy>192.168.0.0/16</proxy>
|
|
<proxy>fc00::/7</proxy>
|
|
-->
|
|
</trusted-proxies>
|
|
</trusted-proxy-config>
|
|
|
|
<properties>
|
|
</properties>
|
|
|
|
</application-settings>
|
|
</server>
|