mirror of
https://gitlab.silvrtree.co.uk/martind2000/nginx-profiles.git
synced 2025-02-04 08:30:15 +00:00
15 lines
283 B
Plaintext
15 lines
283 B
Plaintext
|
upstream mine {
|
||
|
server 127.0.0.1:25560;
|
||
|
}
|
||
|
|
||
|
server {
|
||
|
listen 25565;
|
||
|
server_name silvrtree.com;
|
||
|
access_log /var/log/nginx/mine.access;
|
||
|
error_log /var/log/nginx/mine.error;
|
||
|
|
||
|
location / {
|
||
|
proxy_pass http://mine;
|
||
|
}
|
||
|
}
|