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 container_name: nginx
image: nginx image: nginx
ports: ports:
- "443:443" - "444:443"
- "80:80" - "81:80"
restart: always restart: always
networks: networks:
- nginx_network_external - nginx_network_external

View File

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