diff options
author | Filipp Lepalaan <filipp@mac.com> | 2020-11-02 09:18:24 +0200 |
---|---|---|
committer | Filipp Lepalaan <filipp@mac.com> | 2020-11-02 09:18:24 +0200 |
commit | f7dbe498e966261f94fa62377147c4cdd5a47ea2 (patch) | |
tree | e64aeaeff3aefc2a78081972f8900d74624eea29 /templates/nginx.rst | |
parent | 494dedf17035c1699c35cd2559f15a64eaa7eff3 (diff) | |
download | hello-f7dbe498e966261f94fa62377147c4cdd5a47ea2.tar.gz hello-f7dbe498e966261f94fa62377147c4cdd5a47ea2.tar.bz2 hello-f7dbe498e966261f94fa62377147c4cdd5a47ea2.zip |
Better
Diffstat (limited to 'templates/nginx.rst')
-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; } } |