diff options
| author | Kana <[email protected]> | 2018-05-19 05:08:25 -0300 |
|---|---|---|
| committer | GitHub <[email protected]> | 2018-05-19 05:08:25 -0300 |
| commit | 0f66d746836c75cae5166bf686afbb668357cc49 (patch) | |
| tree | 181bf0153559e738b14439ce2fb0eca7dff41cce /nginx-ssl.sample.conf | |
| parent | Merge pull request #107 from NadyaNayme/Album-Delete (diff) | |
| parent | Improve nginx defaults (diff) | |
| download | host.fuwn.me-0f66d746836c75cae5166bf686afbb668357cc49.tar.xz host.fuwn.me-0f66d746836c75cae5166bf686afbb668357cc49.zip | |
Merge pull request #111 from NadyaNayme/better-nginx-settings
Small nginx.config improvements
Diffstat (limited to 'nginx-ssl.sample.conf')
| -rw-r--r-- | nginx-ssl.sample.conf | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/nginx-ssl.sample.conf b/nginx-ssl.sample.conf index 72d0028..6fb8497 100644 --- a/nginx-ssl.sample.conf +++ b/nginx-ssl.sample.conf @@ -2,6 +2,10 @@ upstream backend { server 127.0.0.1:9999; # Change to the port you specified on lolisafe } +map $sent_http_content_type $charset { + ~^text/ utf-8; +} + server { listen 80; listen [::]:80; @@ -14,6 +18,7 @@ server { listen [::]:443 ssl http2; server_name lolisafe.moe; + server_tokens off; ssl_certificate /path/to/your/fullchain.pem; ssl_certificate_key /path/to/your/privkey.pem; @@ -21,6 +26,9 @@ server { client_max_body_size 100M; # Change this to the max file size you want to allow + charset $charset; + charset_type *; + # Uncomment if you are running lolisafe behind CloudFlare. # This requires NGINX compiled from source with: # --with-http_realip_module |