Files
labweb/web/redirect-root/nginx.conf
2025-11-23 17:45:27 +08:00

9 lines
103 B
Nginx Configuration File

server {
listen 80;
server_name _;
location = / {
return 302 /group/;
}
}