mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-15 04:10:32 +00:00
17 lines
346 B
Plaintext
17 lines
346 B
Plaintext
# environment variables
|
|
# WEB_REVERSE_PROXY_PORT ${WEB_REVERSE_PROXY_PORT}
|
|
|
|
Listen 443
|
|
|
|
<VirtualHost *:443>
|
|
|
|
SSLEngine on
|
|
SSLCertificateFile /etc/ssl/cert1.pem
|
|
SSLCertificateKeyFile /etc/ssl/privkey1.pem
|
|
|
|
ProxyPass / http://node:${WEB_REVERSE_PROXY_PORT}
|
|
|
|
ErrorLog logs/https-error.log
|
|
CustomLog logs/https-access.log common
|
|
|
|
</VirtualHost> |