I
I
Ilya Pavlov2018-10-15 10:12:30
Apache HTTP Server
Ilya Pavlov, 2018-10-15 10:12:30

Apache2 proxy redirect?

There are virtual host configs with a redirect to port 3100:

<VirtualHost mysite.ru:80>
        ServerName www.mysite.ru
        ServerAdmin [email protected]
        ServerAlias mysite.ru

        ProxyPreserveHost On
        ProxyRequests     Off
        ProxyPass         / http://localhost:3100/
        ProxyPassReverse  / http://localhost:3100/
</VirtualHost>

But if there is also another virtual host with the same parameters, but for a different domain/subdomain, and with a redirect to a different port, then all hosts are redirected exactly to 3100. Each virtual host must have its own redirect to its own port. What is the problem?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
K
Kirill Maslov, 2018-10-27
@bziker

The doc says
https://httpd.apache.org/docs/2.4/mod/mod_proxy.html

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question