diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/nginx.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/nginx.rst b/templates/nginx.rst index 1fd314d..5923225 100644 --- a/templates/nginx.rst +++ b/templates/nginx.rst @@ -9,15 +9,15 @@ http { include mime.types; default_type application/octet-stream; - sendfile on; - keepalive_timeout 65; + sendfile on; + keepalive_timeout 65; server { listen 8080; server_name localhost; location / { - root html; + root $PWD/public_html; index index.html index.htm; } } |