| Server IP : 104.21.17.213 / Your IP : 216.73.217.141 Web Server : Apache System : Linux hosting01.arsenalhost.com 4.18.0-425.13.1.lve.el8.x86_64 #1 SMP Mon Feb 27 15:23:24 EST 2023 x86_64 User : corbizre ( 1013) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /etc/nginx/conf.d/ |
Upload File : |
# Authored by: Aleksey K.
# An intermideate proxy between the Apache-ran https://allforeclosureshomes.com/bfp
# & our glorious nginx-powered https://bfpjs.wecandevelopit.com/bfp
# It would have been easier if only nginx were capable of proxying HTTPS request
upstream mydomainsparser {
server
server{
listen 25987 default_server;
listen [::]:25987 default_server;
location /bfp {
proxy_pass https://bfpjs.wecandevelopit.com/bfp;
}
location /Vol2 {
proxy_pass https://mydomains.eastrelay.com/Vol2;
proxy_set_header Host mydomains.eastrelay.com;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Real-IP $remote_addr;
}
}