Add apache2 config file (#47)
This commit is contained in:
parent
9095402108
commit
7a98ff9cc5
1 changed files with 14 additions and 0 deletions
14
fakelog.conf
Normal file
14
fakelog.conf
Normal file
|
@ -0,0 +1,14 @@
|
|||
<VirtualHost *:443>
|
||||
ServerName example.com
|
||||
ServerAlias "example.com"
|
||||
UseCanonicalName on
|
||||
ProxyPreserveHost on
|
||||
ProxyPass / http://localhost:3000/
|
||||
ErrorLog ${APACHE_LOG_DIR}/error.log
|
||||
CustomLog ${APACHE_LOG_DIR}/access.log combined
|
||||
SSLEngine on #Optional for SSL
|
||||
SSLCertificateFile /path/to/ssl/example.com.pem
|
||||
SSLCertificateKeyFile /path/to/ssl/example.com.key
|
||||
SSLProtocol +TLSv1.2 +TLSv1.3 #Optional can be removed
|
||||
Protocols h2 h2c #Optional can be removed
|
||||
</VirtualHost>
|
Loading…
Reference in a new issue