web-gw: sync http and https

This commit is contained in:
Markus 2020-02-04 10:23:23 +01:00
parent 44211ceee6
commit e9defd4236
1 changed files with 17 additions and 5 deletions

View File

@ -13,13 +13,16 @@ server {
root /var/www/html;
location /firmware {
proxy_pass https://regensburg.freifunk.net/firmware;
}
# /firmware is legacy now
#location /firmware {
# proxy_pass https://regensburg.freifunk.net/firmware;
#}
# temp redirector server
location /move.php {
proxy_pass http://home.mephis.to:2342/move.php;
}
# updateserver @meph
location /firmware-ng/experimental {
proxy_pass http://home.mephis.to:2342/ff/experimental/images;
@ -40,7 +43,16 @@ server {
root /var/www/html;
location /firmware {
proxy_pass https://regensburg.freifunk.net/firmware;
# /firmware is legacy now
#location /firmware {
# proxy_pass https://regensburg.freifunk.net/firmware;
#}
# 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;
}
}