mirror of
https://gitlab.silvrtree.co.uk/martind2000/nginx-profiles.git
synced 2025-01-25 16:26:18 +00:00
15 lines
283 B
Nginx Configuration File
15 lines
283 B
Nginx Configuration File
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;
|
|
}
|
|
}
|