Skip to content

Instantly share code, notes, and snippets.

@chriskief
Created December 7, 2013 04:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chriskief/7837334 to your computer and use it in GitHub Desktop.
Save chriskief/7837334 to your computer and use it in GitHub Desktop.
upstream php-sendy-example-com {
server unix:/var/run/php5-fpm.sock;
}
server {
listen 80;
server_name sendy.example.com;
root /home/webapps/sendy.example.com/;
access_log /var/log/nginx/sendy.example.com.access.log main;
error_log /var/log/nginx/sendy.example.com.error.log;
location / {
index index.html index.htm index.php;
try_files $uri $uri/ $uri.php?$args;
}
location ~ \.php$ {
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass php-sendy-example-com;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
location /l/ {
rewrite ^/l/([a-zA-Z0-9/]+)$ /l.php?i=$1 last;
}
location /t/ {
rewrite ^/t/([a-zA-Z0-9/]+)$ /t.php?i=$1 last;
}
location /w/ {
rewrite ^/w/([a-zA-Z0-9/]+)$ /w.php?i=$1 last;
}
location /unsubscribe/ {
rewrite ^/unsubscribe/(.*)$ /unsubscribe.php?i=$1 last;
}
location /subscribe/ {
rewrite ^/subscribe/(.*)$ /subscribe.php?i=$1 last;
}
# deny access to .htaccess files
location ~ /\.ht {
deny all;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment