102 lines
1.8 KiB
Plaintext
102 lines
1.8 KiB
Plaintext
<VirtualHost *:80>
|
|
ServerName git.eom.dev
|
|
ServerAlias *.git.eom.dev
|
|
|
|
ProxyRequests Off
|
|
ProxyPreserveHost On
|
|
|
|
<Proxy *>
|
|
Order deny,allow
|
|
Allow from all
|
|
</Proxy>
|
|
|
|
ProxyPass / http://git/
|
|
ProxyPassReverse / http://git/
|
|
</VirtualHost>
|
|
<VirtualHost *:443>
|
|
ServerName git.eom.dev
|
|
ServerAlias *.git.eom.dev
|
|
|
|
SSLProxyEngine On
|
|
SSLCertificateFile "/usr/local/apache2/conf/server.crt"
|
|
SSLCertificateKeyFile "/usr/local/apache2/conf/server.key"
|
|
ProxyRequests Off
|
|
ProxyPreserveHost On
|
|
|
|
<Proxy *>
|
|
Order deny,allow
|
|
Allow from all
|
|
</Proxy>
|
|
|
|
ProxyPass / http://git/
|
|
ProxyPassReverse / http://git/
|
|
</VirtualHost>
|
|
|
|
<VirtualHost *:80>
|
|
ServerName media.eom.dev
|
|
ServerAlias *.media.eom.dev
|
|
|
|
ProxyRequests Off
|
|
ProxyPreserveHost On
|
|
|
|
<Proxy *>
|
|
Order deny,allow
|
|
Allow from all
|
|
</Proxy>
|
|
|
|
ProxyPass / http://media/
|
|
ProxyPassReverse / http://media/
|
|
</VirtualHost>
|
|
<VirtualHost *:443>
|
|
ServerName media.eom.dev
|
|
ServerAlias *.media.eom.dev
|
|
|
|
SSLProxyEngine On
|
|
SSLCertificateFile "/usr/local/apache2/conf/server.crt"
|
|
SSLCertificateKeyFile "/usr/local/apache2/conf/server.key"
|
|
ProxyRequests Off
|
|
ProxyPreserveHost On
|
|
|
|
<Proxy *>
|
|
Order deny,allow
|
|
Allow from all
|
|
</Proxy>
|
|
|
|
ProxyPass / http://media/
|
|
ProxyPassReverse / http://media/
|
|
</VirtualHost>
|
|
|
|
<VirtualHost *:80>
|
|
ServerName www.eom.dev
|
|
ServerAlias *.www.eom.dev
|
|
|
|
ProxyRequests Off
|
|
ProxyPreserveHost On
|
|
|
|
<Proxy *>
|
|
Order deny,allow
|
|
Allow from all
|
|
</Proxy>
|
|
|
|
ProxyPass / http://www/
|
|
ProxyPassReverse / http://www/
|
|
</VirtualHost>
|
|
<VirtualHost *:443>
|
|
ServerName www.eom.dev
|
|
ServerAlias *.www.eom.dev
|
|
|
|
SSLProxyEngine On
|
|
SSLCertificateFile "/usr/local/apache2/conf/server.crt"
|
|
SSLCertificateKeyFile "/usr/local/apache2/conf/server.key"
|
|
ProxyRequests Off
|
|
ProxyPreserveHost On
|
|
|
|
<Proxy *>
|
|
Order deny,allow
|
|
Allow from all
|
|
</Proxy>
|
|
|
|
ProxyPass / http://www/
|
|
ProxyPassReverse / http://www/
|
|
</VirtualHost>
|