Files
docker-compose-nginx/nginx.conf

13 lines
133 B
Nginx Configuration File

events {}
http {
server {
listen 81;
server_name localhost;
location / {
proxy_pass http://hypoxie-3x-ui:2053/;
}
}
}