Skip to content

Instantly share code, notes, and snippets.

@sujalpatel2209
Created December 17, 2017 09:54
Show Gist options
  • Save sujalpatel2209/ca9cc78741d5c2ebade5280365055847 to your computer and use it in GitHub Desktop.
Save sujalpatel2209/ca9cc78741d5c2ebade5280365055847 to your computer and use it in GitHub Desktop.
Nginx Config For Wordpress
server {
listen 80;
index index.html index.htm index.php;
root /var/www/html/example(Project Folder);
server_name example.org.in www.example.org.in;
# try_files $uri $uri/ /index.php$is_args$args /index.php?$args;
try_files $uri $uri/ /index.php?$args;
location ~ \.php$
{
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/var/run/php/php7.0-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
listen 443 ssl; # managed by Certbot
ssl_certificate /etc/letsencrypt/live/nitinpatel.org.in/fullchain.pem; # managed by Certbot
ssl_certificate_key /etc/letsencrypt/live/nitinpatel.org.in/privkey.pem; # managed by Certbot
include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot
if ($scheme != "https") {
return 301 https://$host$request_uri;
} # managed by Certbot
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment