mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-11-24 08:52:15 +02:00
10 lines
155 B
Nginx Configuration File
10 lines
155 B
Nginx Configuration File
stream {
|
|
upstream backend {
|
|
server xmpp.example.com:5222;
|
|
}
|
|
server {
|
|
listen 5222;
|
|
proxy_pass backend:5222;
|
|
}
|
|
}
|