mirror of
https://github.com/DerTyp7/docker_minecraft_server_auto_starter.git
synced 2025-10-29 20:52:09 +01:00
12 lines
207 B
Nginx Configuration File
12 lines
207 B
Nginx Configuration File
events { }
|
|
stream {
|
|
upstream mc_server {
|
|
server 172.20.0.3:25565;
|
|
server 127.0.0.1:25565 backup;
|
|
}
|
|
server {
|
|
listen 172.20.0.2:25566;
|
|
proxy_pass mc_server;
|
|
}
|
|
}
|