Skip to content

Instantly share code, notes, and snippets.

@calvez
Forked from LeCoupa/wordpress.nginx
Created October 14, 2018 08:03
Show Gist options
  • Save calvez/20569df033a9e4bacc6f305b8eb079f5 to your computer and use it in GitHub Desktop.
Save calvez/20569df033a9e4bacc6f305b8eb079f5 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;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment