|
# vim: set ft=apache :
|
|
|
|
RewriteEngine On
|
|
RewriteCond %{HTTPS} !on
|
|
RewriteRule /.* https://%{SERVER_NAME}$0 [R=301,L]
|
|
|
|
ProxyRequests Off
|
|
ProxyPass / http://localhost:8765/ nocanon
|
|
ProxyPassReverse / http://localhost:8657/
|
|
|
|
<Location />
|
|
Require all granted
|
|
</Location>
|