From 7a98ff9cc5cc57fd1c941b3c4f34788a3efc2b15 Mon Sep 17 00:00:00 2001 From: Patryk <43276401+Zaptyp@users.noreply.github.com> Date: Thu, 12 May 2022 21:59:45 +0200 Subject: [PATCH] Add apache2 config file (#47) --- fakelog.conf | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 fakelog.conf diff --git a/fakelog.conf b/fakelog.conf new file mode 100644 index 0000000..c6efe2f --- /dev/null +++ b/fakelog.conf @@ -0,0 +1,14 @@ + + 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 +