Created
December 17, 2017 09:54
-
-
Save sujalpatel2209/ca9cc78741d5c2ebade5280365055847 to your computer and use it in GitHub Desktop.
Nginx Config 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
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