diff options
| author | Nadya <[email protected]> | 2018-05-20 14:25:15 -0700 |
|---|---|---|
| committer | Nadya <[email protected]> | 2018-05-20 14:25:15 -0700 |
| commit | 18b5d8eed9ddf5f290204879796af00d1b0a6d69 (patch) | |
| tree | 0a3b50029eaf201da37f64c359e883d8adfe42ba /nginx-ssl.sample.conf | |
| parent | Merge pull request #111 from NadyaNayme/better-nginx-settings (diff) | |
| download | host.fuwn.me-18b5d8eed9ddf5f290204879796af00d1b0a6d69.tar.xz host.fuwn.me-18b5d8eed9ddf5f290204879796af00d1b0a6d69.zip | |
Fixes typo of charset_Type
unknown directive charset_type, because the directive is charset_types
Diffstat (limited to 'nginx-ssl.sample.conf')
| -rw-r--r-- | nginx-ssl.sample.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nginx-ssl.sample.conf b/nginx-ssl.sample.conf index 6fb8497..b7f46fe 100644 --- a/nginx-ssl.sample.conf +++ b/nginx-ssl.sample.conf @@ -27,7 +27,7 @@ server { client_max_body_size 100M; # Change this to the max file size you want to allow charset $charset; - charset_type *; + charset_types *; # Uncomment if you are running lolisafe behind CloudFlare. # This requires NGINX compiled from source with: |