ansible-edda/playbooks/files/services/deploy/lrproxy/nginx-conf.d/git.thenineworlds.net.conf

46 lines
1.2 KiB
Plaintext
Raw Normal View History

2022-11-15 00:34:50 +01:00
server {
2023-07-29 14:38:57 +02:00
listen [::]:80;
2022-11-15 00:34:50 +01:00
listen 80;
2023-08-16 23:21:11 +02:00
server_name git.thenineworlds.net;
2022-11-15 00:34:50 +01:00
location ^~ /.well-known {
allow all;
root /var/www/html;
}
location / {
return 301 https://$server_name$request_uri;
}
}
server {
2023-08-17 17:09:30 +02:00
listen [::]:8443 ssl proxy_protocol;
listen 8443 ssl proxy_protocol;
2023-08-16 23:21:11 +02:00
server_name git.thenineworlds.net;
2022-11-15 00:34:50 +01:00
2023-08-16 23:21:11 +02:00
ssl_certificate /etc/letsencrypt/live/git.thenineworlds.net/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/git.thenineworlds.net/privkey.pem;
ssl_trusted_certificate /etc/letsencrypt/live/git.thenineworlds.net/chain.pem;
2022-11-15 00:34:50 +01:00
2023-08-17 17:09:30 +02:00
set_real_ip_from {{ services_all_services.rproxy.inet_address }};
set_real_ip_from {{ services_all_services.rproxy.inet6_address }};
set_real_ip_from {{ services_all_services.lrproxy.inet_address }};
set_real_ip_from {{ services_all_services.lrproxy.inet6_address }};
real_ip_header proxy_protocol;
2022-11-15 00:34:50 +01:00
location / {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_set_header Host $host;
proxy_pass http://pod-git:3000;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}