24 lines
No EOL
691 B
ApacheConf
24 lines
No EOL
691 B
ApacheConf
ServerName example.org
|
|
|
|
<VirtualHost *:80>
|
|
ServerName example.org
|
|
ServerAlias openpgpkey.example.org
|
|
ServerAlias openpgpkey
|
|
DocumentRoot /var/www/html
|
|
RewriteEngine On
|
|
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI}
|
|
</VirtualHost>
|
|
|
|
<VirtualHost *:443>
|
|
ServerName example.org
|
|
ServerAlias openpgpkey.example.org
|
|
ServerAlias openpgpkey
|
|
DocumentRoot /var/www/html
|
|
|
|
SSLEngine On
|
|
SSLCertificateFile /etc/ssl/cert.pem
|
|
SSLCertificateKeyFile /etc/ssl/key.pem
|
|
|
|
ProxyPass /.well-known/openpgpkey http://localhost:8080/.well-known/openpgpkey
|
|
ProxyPassReverse /.well-known/openpgpkey http://localhost:8080/.well-known/openpgpkey
|
|
</VirtualHost> |