e603c0e666
This reverts commit 8a848b349e
.
29 lines
617 B
Plaintext
29 lines
617 B
Plaintext
server {
|
|
listen 80;
|
|
listen [::]:80;
|
|
server_name meta.hamburg.freifunk.net;
|
|
|
|
access_log off; # Bitte nicht aktivieren. Wir wollen ja nicht die IPs unserer Visitor loggen.
|
|
|
|
# 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;
|
|
|
|
root /var/www/meta_ffhh;
|
|
|
|
disable_symlinks on from=$document_root;
|
|
|
|
location / {
|
|
autoindex on;
|
|
autoindex_exact_size on;
|
|
autoindex_localtime off;
|
|
}
|
|
|
|
location ~ /\. {
|
|
deny all;
|
|
access_log off;
|
|
log_not_found off;
|
|
}
|
|
}
|
|
|