diff options
author | Darkeye <postfach@martinmichel.info> | 2011-01-24 16:23:56 (GMT) |
---|---|---|
committer | Darkeye <postfach@martinmichel.info> | 2011-01-24 16:23:56 (GMT) |
commit | b24ca8d14eb8244f18288c429a0f6a69222c78d0 (patch) | |
tree | 0bd5b4993a414b892ea4f2ed500b3ca2bf49843c /files/etc/config/uhttpd | |
parent | b6f2f51aef5938d585a4ad7aeb7666116c420c24 (diff) |
Splash Screen first implementation. Only wifi-ap is splashed. After click user can use the ap 6000 seconds. Splashed users stored in uci file
Diffstat (limited to 'files/etc/config/uhttpd')
-rw-r--r-- | files/etc/config/uhttpd | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/files/etc/config/uhttpd b/files/etc/config/uhttpd new file mode 100644 index 0000000..a424463 --- /dev/null +++ b/files/etc/config/uhttpd @@ -0,0 +1,39 @@ +# Server configuration +config uhttpd main + + # HTTP listen addresses, multiple allowed + list listen_http 0.0.0.0:80 + # Server document root + option home /www + option error_page /splash.html + option index_page splash.html + # Reject requests from RFC1918 IP addresses + # directed to the servers public IP(s). + # This is a DNS rebinding countermeasure. + option rfc1918_filter 1 + + # CGI url prefix, will be searched in docroot. + # Default is /cgi-bin + option cgi_prefix /cgi-bin + + # CGI/Lua timeout, if the called script does not + # write data within the given amount of seconds, + # the server will terminate the request with + # 504 Gateway Timeout response. + option script_timeout 60 + + # Network timeout, if the current connection is + # blocked for the specified amount of seconds, + # the server will terminate the associated + # request process. + option network_timeout 30 + + # TCP Keep-Alive, send periodic keep-alive probes + # over established connections to detect dead peers. + # The value is given in seconds to specify the + # interval between subsequent probes. + # Setting this to 0 will disable TCP keep-alive. + option tcp_keepalive 1 + + + |