-
-
Save yleroux/7d7b322359f7e44fcfcf4cb36e9ce4fa to your computer and use it in GitHub Desktop.
Sample Nginx reverse proxy to Apache set up for Wordpress.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<VirtualHost *:{PORT}> | |
ServerName www.yourdomain.com | |
ServerAdmin [email protected] | |
DocumentRoot /var/www/yourdir/ | |
<Directory /var/www/yourdir> | |
Options Indexes FollowSymLinks | |
AllowOverride all | |
Order allow,deny | |
allow from all | |
</Directory> | |
ErrorLog ${APACHE_LOG_DIR}/error.log | |
CustomLog ${APACHE_LOG_DIR}/access.log combined | |
</VirtualHost> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Add this file to your /etc/nginx/sites-available directory, renaming it to | |
# the domain of your website. | |
# Change the: server_name, port | |
# Credit to http://mattkirman.com/2011/06/01/how-to-speed-up-wordpress-with-nginx/. | |
server { | |
listen 80; | |
server_name www.yourdomain.com; # change this | |
# global gzip on | |
gzip on; | |
gzip_min_length 10240; | |
gzip_types text/plain text/css text/xml text/javascript application/x-javascript application/xml; | |
gzip_disable "MSIE [1-6]\."; | |
add_header Cache-Control public; | |
location / { | |
proxy_pass http://127.0.0.1:{PORT}; # change this | |
proxy_buffering on; | |
proxy_buffers 12 12k; | |
proxy_redirect off; | |
proxy_set_header X-Real-IP $remote_addr; | |
proxy_set_header X-Forwarded-For $remote_addr; | |
proxy_set_header Host $host; | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Add this to the top of your wp-config.php file. | |
// Handle reverse proxy, passing the IP to the server. | |
// This is used by some plugins to fetch the user's IP. | |
if (isset($_SERVER['HTTP_X_FORWARDED_FOR'])) { | |
$ips = explode(',', $_SERVER['HTTP_X_FORWARDED_FOR']); | |
$_SERVER['REMOTE_ADDR'] = $ips[0]; | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment