Konfiguration gefixt und massiv aufgeräumt
SSL Redirects funktionieren jetzt
This commit is contained in:
parent
d170593345
commit
d144bc082c
30 changed files with 501 additions and 241 deletions
|
@ -1,51 +1,35 @@
|
|||
server {
|
||||
listen 80;
|
||||
listen [::]:80;
|
||||
server_name graph.hamburg.freifunk.net knotengraph.ffhh;
|
||||
include /etc/nginx/include/no_logging.conf;
|
||||
|
||||
access_log off; # Bitte nicht aktivieren. Wir wollen ja nicht die IPs unserer Visitor loggen.
|
||||
listen 80;
|
||||
listen [::]:80;
|
||||
|
||||
# Bitte nur zum Debuggen von schweren Fehlern das Log-File temporär setzen und dann anschließend die Logs löschen.
|
||||
# So stellen wir sicher, dass keine IPs geloggt werden.
|
||||
error_log /dev/null crit;
|
||||
server_name knotengraph.ffhh;
|
||||
|
||||
root /var/www/nodes_ffhh;
|
||||
index graph.html;
|
||||
|
||||
if_modified_since before;
|
||||
|
||||
location ~ \.php$ {
|
||||
fastcgi_pass unix:/var/run/php5-fpm.sock;
|
||||
fastcgi_index index.php;
|
||||
fastcgi_param SCRIPT_FILENAME /var/www/default$fastcgi_script_name;
|
||||
include /etc/nginx/fastcgi_params;
|
||||
}
|
||||
|
||||
location ~ \.cgi$ {
|
||||
gzip off; #gzip makes scripts feel slower since they have to complete before getting gzipped
|
||||
fastcgi_pass unix:/var/run/nginx/cgiwrap-dispatch.sock;
|
||||
fastcgi_index index.cgi;
|
||||
fastcgi_param SCRIPT_FILENAME /var/www/nodes_ffhh/$fastcgi_script_name;
|
||||
fastcgi_param QUERY_STRING $query_string;
|
||||
fastcgi_param REQUEST_METHOD $request_method;
|
||||
fastcgi_param CONTENT_TYPE $content_type;
|
||||
fastcgi_param CONTENT_LENGTH $content_length;
|
||||
fastcgi_param GATEWAY_INTERFACE CGI/1.1;
|
||||
fastcgi_param SERVER_SOFTWARE nginx;
|
||||
fastcgi_param SCRIPT_NAME $fastcgi_script_name;
|
||||
fastcgi_param REQUEST_URI $request_uri;
|
||||
fastcgi_param DOCUMENT_URI $document_uri;
|
||||
fastcgi_param DOCUMENT_ROOT $document_root;
|
||||
fastcgi_param SERVER_PROTOCOL $server_protocol;
|
||||
fastcgi_param REMOTE_ADDR $remote_addr;
|
||||
fastcgi_param REMOTE_PORT $remote_port;
|
||||
fastcgi_param SERVER_ADDR $server_addr;
|
||||
fastcgi_param SERVER_PORT $server_port;
|
||||
fastcgi_param SERVER_NAME $server_name;
|
||||
}
|
||||
|
||||
location = /nodes.json {
|
||||
gzip_types application/octet-stream;
|
||||
gzip on;
|
||||
}
|
||||
include /etc/nginx/include/graph_common.conf;
|
||||
}
|
||||
|
||||
server {
|
||||
include /etc/nginx/include/no_logging.conf;
|
||||
|
||||
listen 80;
|
||||
listen [::]:80;
|
||||
|
||||
server_name graph.hamburg.freifunk.net;
|
||||
|
||||
include /etc/nginx/include/ssl.rewrite;
|
||||
}
|
||||
|
||||
server {
|
||||
include /etc/nginx/include/no_logging.conf;
|
||||
|
||||
listen 443 ssl;
|
||||
listen [::]:443 ssl;
|
||||
|
||||
server_name graph.hamburg.freifunk.net;
|
||||
|
||||
include /etc/nginx/include/ssl_wildcard.conf;
|
||||
|
||||
include /etc/nginx/include/graph_common.conf;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue