add redirect

This commit is contained in:
2021-11-28 10:09:52 +08:00
parent f853909a8c
commit 8ff8490750
+8
View File
@@ -61,3 +61,11 @@ server {
proxy_set_header Host $host;
}
}
server {
listen 80;
server_name test-music-room.moicen.com;
location / {
return 301 https://$host$request_uri;
}
}