Add Nginx config for lob.li

The magic happens on the try_files. Nothing is super special about this
This commit is contained in:
alopexc0de 2014-08-15 19:58:13 -04:00
parent cacd80a024
commit ce574e8a32
No known key found for this signature in database
GPG Key ID: 48E847F18074C953
1 changed files with 30 additions and 0 deletions

View File

@ -0,0 +1,30 @@
server { # Lob.li
listen 80;
server_name lob.li;
access_log /home/www/log/short.access.log;
error_log /home/www/log/short.error.log;
root /home/www/lob.li/wroot/;
index index.php;
location / { try_files $uri $uri/ /index.php?$uri; }
# Ignore robots and favicon and deny all .ht* files
location = /robots.txt { log_not_found off; access_log off; }
location = /favicon.ico { log_not_found off; access_log off; }
location ~ /\.ht { deny all; }
location ~ \.php$ {
try_files $uri = 404;
fastcgi_pass unix:/tmp/php.socket;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
server { # Lob.li dynamic subdomain thing
server_name "~^(?<subdomain>.+)\.lob\.li$";
rewrite ^/(.*?)/?$ http://lob.li/$subdomain;
}