1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-16 03:48:44 +00:00
dockerfiles/prosody/nginx.conf
2019-12-19 04:09:05 +08:00

10 lines
155 B
Nginx Configuration File

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