ansible-ffrgb/roles/web-gw/templates/vhost.j2

65 lines
1.5 KiB
Plaintext
Raw Normal View History

2017-07-03 21:18:45 +02:00
server {
listen 80;
listen [::]:80;
2019-12-09 15:32:10 +01:00
proxy_set_header X-Forwarded-For $remote_addr;
2017-07-03 21:18:45 +02:00
server_name _;
location /.well-known/acme-challenge {
default_type "text/plain";
alias /var/www/acme-challenge;
}
root /var/www/html;
2018-01-27 20:24:56 +01:00
# temp redirector server
location /move.php {
2019-12-09 15:32:10 +01:00
proxy_pass http://home.mephis.to:2342/move.php;
2018-01-27 20:24:56 +01:00
}
2020-02-04 10:23:23 +01:00
2019-12-09 15:32:10 +01:00
# updateserver @meph
location /firmware-ng/experimental {
2019-12-09 15:32:10 +01:00
proxy_pass http://home.mephis.to:2342/ff/experimental/images;
}
location /firmware-ng/stable {
proxy_pass http://home.mephis.to:2342/ff/stable/images;
}
# post 11s
location /firmware-11s/experimental {
proxy_pass http://home.mephis.to:2342/ff/11s/experimental/images;
}
location /firmware-11s/stable {
proxy_pass http://home.mephis.to:2342/ff/11s/stable/images;
}
2017-07-03 21:18:45 +02:00
}
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
proxy_set_header X-Forwarded-For $remote_addr;
2017-07-03 21:18:45 +02:00
server_name {{ ansible_fqdn }};
ssl_certificate_key /etc/nginx/ssl/{{ ansible_fqdn }}.key;
ssl_certificate /etc/nginx/ssl/{{ ansible_fqdn }}.crt;
root /var/www/html;
2020-02-04 10:23:23 +01:00
# updateserver @meph
location /firmware-ng/experimental {
proxy_pass http://home.mephis.to:2342/ff/experimental/images;
}
location /firmware-ng/stable {
proxy_pass http://home.mephis.to:2342/ff/stable/images;
}
# post 11s
location /firmware-11s/experimental {
proxy_pass http://home.mephis.to:2342/ff/11s/experimental/images;
}
location /firmware-11s/stable {
proxy_pass http://home.mephis.to:2342/ff/11s/stable/images;
}
2017-07-03 21:18:45 +02:00
}