21 lines
279 B
Nginx Configuration File
21 lines
279 B
Nginx Configuration File
events {}
|
|
|
|
|
|
http {
|
|
|
|
server {
|
|
listen 80;
|
|
server_name hypoxie-admin-xui.duckdns.org;
|
|
location / {
|
|
proxy_pass http://hypoxie-3x-ui:2053/;
|
|
}
|
|
}
|
|
|
|
server {
|
|
listen 80;
|
|
server_name hypoxie-xui.duckdns.org;
|
|
location / {
|
|
proxy_pass http://hypoxie-3x-ui:80/;
|
|
}
|
|
}
|
|
} |