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

10 lines
150 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;
2022-01-14 09:19:04 +02:00
proxy_pass backend;
2019-12-18 22:09:05 +02:00
}
}