diff --git a/config/apache2.conf.sample b/config/apache2.conf.sample deleted file mode 100644 index f004f4c96d5..00000000000 --- a/config/apache2.conf.sample +++ /dev/null @@ -1,52 +0,0 @@ -# Apache2 Virtual Host file to proxy Discourse to Thin cluster - - -ServerName forum.example.org.uk -DocumentRoot /html/discourse/public/ -LogLevel debug -# ErrorLog /html/discourse/log/error.log -# CustomLog /html/discourse/log/access.log combined - -# Hide some server information, since we can.. -Header set Server "Sample Server Name" - - - SecRuleEngine On - # Remove any rules that prevent Discourse from running at all - SecRuleRemoveById - - - - Require all granted - - - - # Set caching headers here, providing advice to downstream cache - Header set Cache-Control "public, max-age = 604800" - - - RewriteEngine On - - - BalancerMember http://127.0.0.1:3000 - BalancerMember http://127.0.0.1:3001 - BalancerMember http://127.0.0.1:3002 - - - # Prevent requests for /assets, /javascripts, /plugins and /uploads from being passed upstream - ProxyPass /assets ! - ProxyPass /javascripts ! - ProxyPass /plugins ! - ProxyPass /uploads ! - - # Pass the everything else - ProxyPass / balancer://thinservers/ - ProxyPassReverse / balancer://thinservers/ - ProxyPreserveHost on - - - Require all granted - - - -