Re: [users@httpd] Reverse Proxy server show "Service Unavailable".

2021-03-06 Thread Jason Long
Problem solved. It was because of SELinux: # setsebool -P httpd_can_network_connect on On Saturday, March 6, 2021, 10:11:27 PM GMT+3:30, Jason Long wrote: Thanks. On VM1, I used VirtualBox Port Forwarding: Protocol    Host IP        Host Port        Guest IP        Guest Port    

Re: [users@httpd] Reverse Proxy server show "Service Unavailable".

2021-03-06 Thread Jason Long
Thanks. On VM1, I used VirtualBox Port Forwarding: Protocol    Host IP        Host Port        Guest IP        Guest Port     TCP  127.0.0.1     2080               10.0.3.15        80 When I enter "127.0.0.1:2080" in my browser, then logs on VM1 are: # cat access_log  10.0.3.2 -

Re: [users@httpd] Reverse Proxy server show "Service Unavailable".

2021-03-06 Thread Eric Covener
> Service Unavailable > The server is temporarily unable to service your request due to maintenance > downtime or capacity problems. Please try again later. > > Why? What do both error_logs say? - To unsubscribe, e-mail:

[users@httpd] Reverse Proxy server show "Service Unavailable".

2021-03-06 Thread Jason Long
Hello, I created two VMs in the VirtualBox. One of them is Reverse Proxy server and another one is Apache Web Server. The specifications of VM1 (Reverse Proxy) are as follows: NIC 1 is NAT and Its IP address is "10.0.3.15". NIC 2 is Internal Network and its IP address is "192.168.1.3". The

Re: [users@httpd] Some questions about launch a reverse proxy.

2021-03-06 Thread Jason Long
Thank you. If Apache can do it, then why ATS? On Saturday, March 6, 2021, 05:21:04 PM GMT+3:30, William Dumangeng Jr wrote: Yes, Apache httpd can be a Reverse proxy too using "ProxyPass" directive in the config file. On Sat, Mar 6, 2021 at 9:35 PM Jason Long wrote: > Thanks. >

Re: [users@httpd] Some questions about launch a reverse proxy.

2021-03-06 Thread William Dumangeng Jr
https://httpd.apache.org/docs/2.4/mod/mod_proxy.html On Sat, Mar 6, 2021 at 9:44 PM William Dumangeng Jr wrote: > Yes, Apache httpd can be a Reverse proxy too using *"ProxyPass" *directive > in the config file. > > On Sat, Mar 6, 2021 at 9:35 PM Jason Long > wrote: > >> Thanks. >> Apache can't

Re: [users@httpd] Some questions about launch a reverse proxy.

2021-03-06 Thread William Dumangeng Jr
Yes, Apache httpd can be a Reverse proxy too using *"ProxyPass" *directive in the config file. On Sat, Mar 6, 2021 at 9:35 PM Jason Long wrote: > Thanks. > Apache can't do it? > > > > > > > On Saturday, March 6, 2021, 05:02:44 PM GMT+3:30, William Dumangeng Jr < > wbdumang...@dilg.gov.ph>

Re: [users@httpd] Some questions about launch a reverse proxy.

2021-03-06 Thread Jason Long
Thanks. Apache can't do it? On Saturday, March 6, 2021, 05:02:44 PM GMT+3:30, William Dumangeng Jr wrote: Reverse proxy software like Nginx, ATS or Varnish. Install any of those software and the WAF in the same host. On Sat, Mar 6, 2021 at 7:07 PM Jason Long wrote: > Hi William, >

Re: [users@httpd] Some questions about launch a reverse proxy.

2021-03-06 Thread William Dumangeng Jr
Reverse proxy software like Nginx, ATS or Varnish. Install any of those software and the WAF in the same host. On Sat, Mar 6, 2021 at 7:07 PM Jason Long wrote: > Hi William, > Thank you. > I need your second diagram: > > The Internet--->WAF and Reverse Prox(Public >

Re: [users@httpd] Some questions about launch a reverse proxy.

2021-03-06 Thread Jason Long
Hi William, Thank you. I need your second diagram: The Internet--->WAF and Reverse Prox(Public IP)-->Apache(Private IP) But, which program doing Reverse Proxy? Apache? On Saturday, March 6, 2021, 09:01:38 AM GMT+3:30, William Dumangeng Jr wrote: Hi; The WAF and web

Re: [users@httpd] Re: Customizing the HTTP Reason Phrase

2021-03-06 Thread Lars Bruun-Hansen
Solved it ! The module was not loaded. This fixed it: LoadModule asis_modulemodules/mod_asis.so In my (feeble) defense I think I would have expected some warnings/errors in the log when referring to an unknown handler. (i.e. in SetHandler, AddHandler or in RewriteRule with "H" flag). For