13 lines
131 B
Nginx Configuration File
13 lines
131 B
Nginx Configuration File
events {}
|
|
|
|
|
|
http {
|
|
|
|
server {
|
|
listen 80;
|
|
server_name localhost;
|
|
location / {
|
|
proxy_pass http://kosma-3x-ui:2053/;
|
|
}
|
|
}
|
|
} |