1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-12-12 11:14:57 +02:00
dockerfiles/prosody/nginx.conf
2022-01-14 15:19:04 +08:00

10 lines
150 B
Nginx Configuration File

stream {
upstream backend {
server xmpp.example.com:5222;
}
server {
listen 5222;
proxy_pass backend;
}
}