Add nginx-extra role
This commit is contained in:
parent
6aa994b056
commit
2e5de83a17
5 changed files with 23 additions and 0 deletions
roles/nginx-extra/files/snippets
3
roles/nginx-extra/files/snippets/autoindex.conf
Normal file
3
roles/nginx-extra/files/snippets/autoindex.conf
Normal file
|
@ -0,0 +1,3 @@
|
|||
autoindex on;
|
||||
autoindex_exact_size on;
|
||||
autoindex_localtime off;
|
|
@ -0,0 +1,6 @@
|
|||
location ^~ /.well-known/acme-challenge {
|
||||
proxy_set_header Host $host;
|
||||
proxy_set_header X-Forwarded-Proto $scheme;
|
||||
proxy_pass http://srv01.hamburg.freifunk.net$request_uri;
|
||||
access_log off;
|
||||
}
|
8
roles/nginx-extra/files/snippets/no-unsafe-files.conf
Normal file
8
roles/nginx-extra/files/snippets/no-unsafe-files.conf
Normal file
|
@ -0,0 +1,8 @@
|
|||
disable_symlinks if_not_owner from=$document_root;
|
||||
|
||||
# Do not serve dotfiles.
|
||||
location ~ /\. {
|
||||
deny all;
|
||||
access_log off;
|
||||
log_not_found off;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue