mirror of
https://gitlab.archlinux.org/archlinux/infrastructure.git
synced 2025-01-18 08:06:16 +01:00
A extra access_log entry was added with the following commands: $ cd roles $ grep -lr access_log | xargs -P 1 -n 1 sed -i '/access_log/ s/\(.*\)\( \)\(\(reduced\|main\);$\)/\1 \3\n\1.json json_\3/'
35 lines
1.1 KiB
Django/Jinja
35 lines
1.1 KiB
Django/Jinja
server {
|
|
listen 80;
|
|
listen [::]:80;
|
|
server_name {{ sources_domain }};
|
|
|
|
access_log /var/log/nginx/{{ sources_domain }}/access.log reduced;
|
|
access_log /var/log/nginx/{{ sources_domain }}/access.log.json json_reduced;
|
|
error_log /var/log/nginx/{{ sources_domain }}/error.log;
|
|
|
|
include snippets/letsencrypt.conf;
|
|
|
|
location / {
|
|
access_log off;
|
|
return 301 https://$server_name$request_uri;
|
|
}
|
|
}
|
|
|
|
server {
|
|
listen 443 ssl http2;
|
|
listen [::]:443 ssl http2;
|
|
server_name {{ sources_domain }};
|
|
|
|
access_log /var/log/nginx/{{ sources_domain }}/access.log reduced;
|
|
access_log /var/log/nginx/{{ sources_domain }}/access.log.json json_reduced;
|
|
error_log /var/log/nginx/{{ sources_domain }}/error.log;
|
|
|
|
ssl_certificate /etc/letsencrypt/live/{{ sources_domain }}/fullchain.pem;
|
|
ssl_certificate_key /etc/letsencrypt/live/{{ sources_domain }}/privkey.pem;
|
|
ssl_trusted_certificate /etc/letsencrypt/live/{{ sources_domain }}/chain.pem;
|
|
|
|
root {{ sources_dir }};
|
|
|
|
autoindex on;
|
|
}
|