Add support for latin1 encoding of input files. #2

This commit is contained in:
Michał Słomkowski
2017-02-17 13:50:44 +01:00
parent fe5c77d2a5
commit 09f0b8a700
5 changed files with 128 additions and 22 deletions

View File

@@ -0,0 +1,20 @@
http {
server {
listen 80 default_server;
server_name example.com;
# redirect auf https://www....
location / {
return 301 https://www.example.com$request_uri;
}
# Statusseite für Monitoring freigeben
# line above contains german umlaut causing problems
location /nginx_status {
stub_status on;
access_log off;
allow 127.0.0.1;
deny all;
}
}
}

View File

@@ -0,0 +1,20 @@
http {
server {
listen 80 default_server;
server_name example.com;
# redirect auf https://www....
location / {
return 301 https://www.example.com$request_uri;
}
# Statusseite für Monitoring freigeben
# line above contains german umlaut causing problems
location /nginx_status {
stub_status on;
access_log off;
allow 127.0.0.1;
deny all;
}
}
}