1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-16 11:58:47 +00:00
dockerfiles/prosody/nginx.conf

10 lines
150 B
Nginx Configuration File
Raw Normal View History

2019-12-18 20:09:05 +00:00
stream {
upstream backend {
server xmpp.example.com:5222;
}
server {
listen 5222;
2022-01-14 07:19:04 +00:00
proxy_pass backend;
2019-12-18 20:09:05 +00:00
}
}