d144bc082c
SSL Redirects funktionieren jetzt
14 lines
209 B
Plaintext
14 lines
209 B
Plaintext
server {
|
|
include /etc/nginx/include/no_logging.conf;
|
|
|
|
#listen 80;
|
|
listen [::]:80;
|
|
|
|
server_name opkg.services.ffhh;
|
|
|
|
location / {
|
|
proxy_pass https://downloads.openwrt.org/;
|
|
}
|
|
}
|
|
|