Skip to content

Instantly share code, notes, and snippets.

@LeCoupa
Last active November 8, 2023 23:26
  • Star 26 You must be signed in to star a gist
  • Fork 13 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save LeCoupa/e29a457841dc4dd60006 to your computer and use it in GitHub Desktop.
WordPress - Nginx Configuration File (with SSL) --> https://github.com/LeCoupa/awesome-cheatsheets
##
# @server studio
# @host hackisition.com
# @desc nginx host rules
# @author Julien Le Coupanec <julien@gentlenode.com>
##
# HTTP Server
server {
listen 80;
server_name hackisition.com www.hackisition.com;
rewrite ^ https://$server_name$request_uri permanent;
}
# HTTPS Server
server {
listen 443;
server_name hackisition.com www.hackisition.com;
root /var/www;
index index.php;
error_log /var/log/nginx/hackisition.com.log crit;
ssl on;
ssl_certificate /etc/nginx/ssl/hackisition.com.crt;
ssl_certificate_key /etc/nginx/ssl/hackisition.com.key;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2; # do not use SSLv3 ref: POODLE
client_max_body_size 20M;
location / {
try_files $uri $uri/ /index.php;
}
location ~ \.php$ {
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
}
location /doc/ {
alias /usr/share/doc/;
autoindex on;
allow 127.0.0.1;
deny all;
}
location ~/\.ht {
deny all;
}
}
@thiagovsk
Copy link

if you have listen 443 ssl on; is not necessary
Thanks for your gist =D

@Sauraus
Copy link

Sauraus commented Dec 20, 2016

What about setting $_SERVER['HTTPS'] = 'on' in the wp-config.php file?

@sondnm
Copy link

sondnm commented Jul 30, 2017

@thiagovsk It's only not required from nginx 0.7.14
I think it should be listen 443 ssl; instead of listen 443; when you are not using ssl on; directive

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment