summaryrefslogtreecommitdiff |
diff options
author | nsensfel <SpamShield0@noot-noot.org> | 2020-01-14 17:55:15 +0100 |
---|---|---|
committer | nsensfel <SpamShield0@noot-noot.org> | 2020-01-14 17:55:15 +0100 |
commit | dc7c1857845a5da7cd6cba178c16fa8ea8c68cec (patch) | |
tree | 0fd4fcbbbabd3654995abe6e5d6716d0213763ba /conf/nginx.conf | |
parent | 0db9aabba95a33fd23c192343721559f9ca15581 (diff) |
...
Diffstat (limited to 'conf/nginx.conf')
-rw-r--r-- | conf/nginx.conf | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/conf/nginx.conf b/conf/nginx.conf index afafbd5..82ec6b7 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -69,6 +69,21 @@ http { } } + server { +# listen 127.0.0.1; + listen *:2900; + server_name localhost; + access_log /var/log/nginx/localhost.access_log main; + error_log /var/log/nginx/localhost.error_log info; + + root /my/src/nickel-bet-client/www/; + + location / { + autoindex on; + autoindex_exact_size off; + } + } + # ## Public tests # server { # listen 443; |