summaryrefslogtreecommitdiff |
diff options
author | Nathanael Sensfelder <SpamShield0@MultiAgentSystems.org> | 2020-01-14 19:30:19 +0100 |
---|---|---|
committer | Nathanael Sensfelder <SpamShield0@MultiAgentSystems.org> | 2020-01-14 19:30:19 +0100 |
commit | b3bfd26ce3764fae2a846981e4d8c5db90a1aecc (patch) | |
tree | 68ae641b5ca4a77c97248aa1671b593d880aeb7b /conf/nginx.conf | |
parent | dc8d1139c141b5281145829b5e87602425b4893f (diff) | |
parent | dc7c1857845a5da7cd6cba178c16fa8ea8c68cec (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; |