Files
docker-compose-nginx/nginx.conf
2025-08-25 14:27:27 +07:00

13 lines
153 B
Nginx Configuration File

events {}
http {
server {
listen 80;
server_name hypoxie-admin-xui.duckdns.org;
location / {
proxy_pass http://hypoxie-3x-ui:2053/;
}
}
}