mirror of
https://github.com/TecharoHQ/anubis.git
synced 2026-02-10 05:49:04 -06:00
22 lines
595 B
Plaintext
22 lines
595 B
Plaintext
<IfModule mod_ssl.c>
|
|
<VirtualHost *:443>
|
|
ServerAdmin me@xeiaso.net
|
|
ServerName httpd.local.cetacean.club
|
|
DocumentRoot /var/www/httpd.local.cetacean.club
|
|
Protocols h2 http/1.1
|
|
|
|
SSLCertificateFile /etc/techaro/pki/httpd.local.cetacean.club/cert.pem
|
|
SSLCertificateKeyFile /etc/techaro/pki/httpd.local.cetacean.club/key.pem
|
|
Include /etc/httpd/snippets/options-ssl-apache.conf
|
|
|
|
Include /etc/httpd/snippets/proxy-headers.conf
|
|
|
|
ProxyPreserveHost On
|
|
|
|
ProxyRequests Off
|
|
ProxyVia Off
|
|
|
|
ProxyPass / http://anubis:3000
|
|
ProxyPassReverse / http://anubis:3000
|
|
</VirtualHost>
|
|
</IfModule> |