From c523354d044c2e643bf307a178db386ee65b1e06 Mon Sep 17 00:00:00 2001 From: Trent Palmer Date: Sat, 9 Jan 2021 01:19:02 -0800 Subject: [PATCH] update example apache confs --- .../apache/photo_app.example.com.conf.example | 34 ------------------- 1 file changed, 34 deletions(-) delete mode 100644 examples/apache/photo_app.example.com.conf.example diff --git a/examples/apache/photo_app.example.com.conf.example b/examples/apache/photo_app.example.com.conf.example deleted file mode 100644 index 68348ee..0000000 --- a/examples/apache/photo_app.example.com.conf.example +++ /dev/null @@ -1,34 +0,0 @@ - - - ServerName photoapp.example.com - ProxyPass "/.well-known" ! - ProxyPass "/favicon.ico" ! - ProxyPass "/css" ! - ProxyPass "/js" ! - ProxyPass "/" "http://127.0.0.1:8200/" - ProxyPassReverse "/" "http://127.0.0.1:8200/" - ErrorLog ${APACHE_LOG_DIR}/error.log - CustomLog ${APACHE_LOG_DIR}/access.log combined - - alias "/css" "/var/lib//css" - alias "/js" "/var/lib//js" - - /css"> - ExpiresActive on - ExpiresDefault "access plus 15 minutes" - Header set Cache-Control max-age=900 - Options Indexes - Require all granted - Allow from all - - - /js"> - ExpiresActive on - ExpiresDefault "access plus 15 minutes" - Header set Cache-Control max-age=900 - Options Indexes - Require all granted - Allow from all - - -