This commit is contained in:
2025-08-25 14:27:27 +07:00
parent 5ac70153c3
commit 6e99dbf389
2 changed files with 4 additions and 4 deletions

View File

@@ -8,8 +8,8 @@ services:
container_name: nginx
image: nginx
ports:
- "443:443"
- "80:80"
- "444:443"
- "81:80"
restart: always
networks:
- nginx_network_external

View File

@@ -4,8 +4,8 @@ events {}
http {
server {
listen 81;
server_name localhost;
listen 80;
server_name hypoxie-admin-xui.duckdns.org;
location / {
proxy_pass http://hypoxie-3x-ui:2053/;
}