1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-01-22 05:09:36 +02:00
dockerfiles/prosody/nginx.conf

10 lines
150 B
Nginx Configuration File
Raw Normal View History

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