27 lines
841 B
Plaintext
27 lines
841 B
Plaintext
<VirtualHost 91.218.230.167:80>
|
|
ServerName www.example.com
|
|
ServerAlias example.com
|
|
#SSLEngine on
|
|
#SSLProxyEngine on
|
|
#SSLProxyVerify none
|
|
#SSLProxyCheckPeerCN off
|
|
#SSLProxyCheckPeerName off
|
|
#SSLProxyCheckPeerExpire off
|
|
ServerAdmin admin@example2.com
|
|
ProxyRequests Off
|
|
ProxyPreserveHost On
|
|
AllowEncodedSlashes NoDecode
|
|
<Proxy *>
|
|
Order deny,allow
|
|
Allow from all
|
|
</Proxy>
|
|
ProxyPass / https://127.0.0.1:8080/ nocanon
|
|
ProxyPassReverse / https://127.0.0.1:8080/
|
|
#RequestHeader set X-Forwarded-Proto "https"
|
|
#RequestHeader set X-Forwarded-Port "443"
|
|
RewriteEngine on
|
|
RewriteCond %{SERVER_NAME} =www.example.com [OR]
|
|
RewriteCond %{SERVER_NAME} =example.com
|
|
RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [END,NE,R=permanent]
|
|
</VirtualHost>
|