1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-07 23:51:21 +00: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;
}
}