1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
<VirtualHost app.domaine.com:80>
ServerName app.domaine.com
ServerAlias app app.domaine.com
DocumentRoot "/home/webuser/apache_data/htdocs/default"
<Directory "/home/webuser/apache_data/htdocs/default">
AllowOverride None
# Apache 2.2
Order allow,deny
Allow from all
# Apache 2.4
#Require all granted
</Directory>
# Defined the access on the proxy
<Proxy *>
Require all granted
</Proxy>
# Proxy rules
ProxyPass http://webserver2.domaine.com:15672/
ProxyPassReverse http://rmq-uat-01.app2.domaine.com:15672/
</VirtualHost> |
Partager