1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-12-14 11:23:02 +02:00
dockerfiles/prosody/nginx.conf

10 lines
155 B
Nginx Configuration File
Raw Normal View History

2019-12-18 22:09:05 +02:00
stream {
upstream backend {
server xmpp.example.com:5222;
}
server {
listen 5222;
proxy_pass backend:5222;
}
}