mirror of https://github.com/midoks/mdserver-web
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
524 B
23 lines
524 B
6 months ago
|
server
|
||
|
{
|
||
|
listen {$PORT};
|
||
|
listen [::]:{$PORT};
|
||
|
|
||
|
server_name {$SERVER_NAME};
|
||
|
index index.php index.html index.htm default.php default.htm default.html;
|
||
|
|
||
|
#SSL-START
|
||
|
#error_page 404/404.html;
|
||
|
#SSL-END
|
||
|
|
||
|
#PROXY-START
|
||
|
location ^~ / {
|
||
|
proxy_pass http://0.0.0.0:{$PANAL_PORT}/;
|
||
|
proxy_http_version 1.1;
|
||
|
proxy_set_header Upgrade $http_upgrade;
|
||
|
proxy_set_header Connection 'upgrade';
|
||
|
}
|
||
|
#PROXY-END
|
||
|
|
||
|
error_log {$LOGPATH}/{$SERVER_NAME}.error.log;
|
||
|
}
|