This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| http { | |
| ... | |
| server { | |
| listen 80; | |
| server_name example.com; | |
| # Proxy requests to Program A (port 3000) | |
| location /PAA { | |
| root "C:/D/AppHost/web/build/"; | |
| proxy_pass http://localhost:3000; |