Erant-OldApp/public/nginx.conf

13 lines
196 B
Nginx Configuration File
Raw Permalink Normal View History

2022-12-04 14:58:31 +00:00
server {
server_name cms.example.com;
location / {
proxy_pass http://127.0.0.1:xxxx;
}
}
server {
server_name *.example.com;
location / {
proxy_pass http://127.0.0.1:xxxx;
}
}