Skip to content

Instantly share code, notes, and snippets.

@rkjha
Last active March 17, 2023 10:23
Show Gist options
  • Star 7 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save rkjha/9521019 to your computer and use it in GitHub Desktop.
Save rkjha/9521019 to your computer and use it in GitHub Desktop.
a sample wordpress config for nginx
server {
listen 80;
root /home/username/example.com;
index index.php index.html;
server_name example.com;
location / {
try_files $uri $uri/ /index.php?q=$uri&$args;
}
location ~ \.php$ {
# use fastcgi_pass 127.0.0.1:9000;
# Or using unix socket :
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
}
}
server {
listen 80;
server_name www.example.com;
return 301 $scheme://example.com$request_uri;
}
@lawrence615
Copy link

This fixed my issue. Thanks .

@iamjenechka
Copy link

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