Search found 2 matches
- Thu Jan 21, 2016 10:46 pm
- Forum: Installation Problems
- Topic: Nginx reverse proxy
- Replies: 7
- Views: 12755
Re: Nginx reverse proxy
This configuration works! server { listen 80; index index.html index.htm index.php; server_name radar.jorgemota.pt; location / { proxy_pass http://127.0.0.1:8085/VirtualRadar/; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $remote_addr; proxy_set_header Host $host; } } A ...
- Thu Jan 21, 2016 8:06 pm
- Forum: Installation Problems
- Topic: Nginx reverse proxy
- Replies: 7
- Views: 12755
Nginx reverse proxy
Hi, It's possible to use Nginx as Virtual Radar reverse proxy? I tried the follow nginx host configuration: Server { listen 80; index index.html index.htm index.php; server_name radar.jorgemota.pt; location / { proxy_pass http://127.0.0.1:8085/VirtualRadar; proxy_set_header X-Real-IP $remote_addr; p...