pretendo-docker/config/nginx/redirect.conf
Matthew Lopez 3948c01fb4
Attempt to get the Wii U to connect to nginx directly
It doesn't work for some reason, even though TLSv1.0 is enabled in nginx.
2023-12-22 20:45:33 -05:00

10 lines
160 B
Plaintext

server {
listen 80;
listen 443 ssl;
server_name pretendo.cc www.pretendo.cc;
location / {
return 302 https://pretendo.network;
}
}