Difference between revisions of "WebServer - Proxy VirtualHost Configuration"
Jump to navigation
Jump to search
| Line 7: | Line 7: | ||
######################### | ######################### | ||
| − | # Test.Domain.Net | + | # Test.Domain.Net # |
######################### | ######################### | ||
| + | # Proxy the local machine name for completeness | ||
<VirtualHost *:80> | <VirtualHost *:80> | ||
ServerName Server.LocalDomain.net | ServerName Server.LocalDomain.net | ||
| Line 15: | Line 16: | ||
</VirtualHost> | </VirtualHost> | ||
| + | # Enforce use of SSL | ||
<VirtualHost *:80> | <VirtualHost *:80> | ||
ServerName Test.Domain.Net | ServerName Test.Domain.Net | ||
| Line 20: | Line 22: | ||
</VirtualHost> | </VirtualHost> | ||
| + | # The actual proxy definition | ||
<VirtualHost _default_:443> | <VirtualHost _default_:443> | ||
ServerName Test.Domain.Net | ServerName Test.Domain.Net | ||
| Line 37: | Line 40: | ||
Allow from all | Allow from all | ||
</Proxy> | </Proxy> | ||
| − | + | ErrorLog /var/log/apache2/Proxy/TDN.log | |
| − | + | CustomLog /var/log/apache2/Proxy/TDN-access.log combined | |
</VirtualHost> | </VirtualHost> | ||
Revision as of 13:39, 15 July 2020
An Example:
#########################
# Test.Domain.Net #
#########################
# Proxy the local machine name for completeness
<VirtualHost *:80>
ServerName Server.LocalDomain.net
Redirect permanent / https://Test.Domain.Net/
</VirtualHost>
# Enforce use of SSL
<VirtualHost *:80>
ServerName Test.Domain.Net
Redirect permanent / https://Test.Domain.Net/
</VirtualHost>
# The actual proxy definition
<VirtualHost _default_:443>
ServerName Test.Domain.Net
ProxyRequests on
SSLEngine On
SSLProxyEngine On
ProxyPreserveHost Off
# Redirect HTTPS traffic
ProxyPass / https://Server.LocalDomain.net/
ProxyPassReverse / https://Server.LocalDomain.net/
SSLCertificateFile /etc/letsencrypt/live/Test.Domain.Net/fullchain.pem
SSLCertificateKeyFile /etc/letsencrypt/live/Test.Domain.Net/privkey.pem
<Proxy "*">
Order allow,deny
Allow from all
</Proxy>
ErrorLog /var/log/apache2/Proxy/TDN.log
CustomLog /var/log/apache2/Proxy/TDN-access.log combined
</VirtualHost>