Editing Varnish/MediaWiki

From Bibliotheca Anonoma

Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then publish the changes below to finish undoing the edit.

Latest revision Your text
Line 1: Line 1:
The Varnish implementation will still require Nginx, even if Nginx is already being used as the MediaWiki server, since only Nginx can process SSL.
The Varnish implementation will still require Nginx, even if Nginx is already being used as the MediaWiki server, since only Nginx can process SSL.
See this for installation instructions and Cloudflare varnish config:
http://www.htpcguides.com/configure-wordpress-varnish-4-cache-with-apache-or-nginx/
See this for actual Varnish 4.0 config with Mediawiki:
https://www.mediawiki.org/wiki/Manual:Varnish_caching#Configuring_Varnish_4.x
Notice that if you're using SSL, Varnish isn't able to process SSL encrypted data. However, Nginx can function both as the PHP-FPM backend of varnish and an SSL decrypting frontend to varnish.
== Setting up Nginx+PHP-FPM to work as a Vagrant Backend ==
It's pretty simple, just comment out {{ic|listen 80;}} and {{ic|listen 443;}} (we'll restore SSL support in the next step) and replace it with {{ic|listen 127.0.0.1:8080;}}.
{{hc|/etc/nginx/conf.d/wiki.bibanon.org.conf|<nowiki>
server {
    #listen 80;
    #listen 443;
    listen 127.0.0.1:8080; # tells Nginx to listen for traffic passed by Varnish
    server_name wiki.bibanon.org;
# and etc.
</nowiki>}}


== SSL Redirect with Nginx ==
== SSL Redirect with Nginx ==
Line 58: Line 35:


https://bjornjohansen.no/redirect-to-https-with-nginx
https://bjornjohansen.no/redirect-to-https-with-nginx
http://www.geoffstratton.com/nginx-php-fpm-php-cache-ssl-varnish-drupal
=== Redirecting non wiki domains through to the same server ===
Alright, so Varnish and Nginx are running on the same server, but now Varnish has monopolized the HTTP 80 port, and Nginx is left only with the SSL port. What do we do now?
Well, it's simple. Have Varnish enforce the use of SSL on certain domains. Unfortunately, each domain has to be manually set like this. maybe there is a better way with a wildcard?
https://www.rsreese.com/redirect-http-to-https-using-varnish/
Please note that all contributions to Bibliotheca Anonoma are considered to be released under the Creative Commons Attribution-ShareAlike (see Bibliotheca Anonoma:Copyrights for details). If you do not want your writing to be edited mercilessly and redistributed at will, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource. Do not submit copyrighted work without permission!
Cancel Editing help (opens in new window)

Templates used on this page: