Skip to content

Instantly share code, notes, and snippets.

@DrMabuse23
Created January 2, 2014 18:19
Show Gist options
  • Save DrMabuse23/8223767 to your computer and use it in GitHub Desktop.
Save DrMabuse23/8223767 to your computer and use it in GitHub Desktop.
server {
listen 80
set $host_path "/var/www/netapp.dev";
access_log /var/www/netapp.dev/log/access.log main;
error_log /var/www/netapp.dev/log/error.log;
server_name netapp.dev;
root $host_path/www;
set $yii_bootstrap "index.php";
charset utf-8;
location /www {
index index.html $yii_bootstrap;
try_files $uri $uri/ /$yii_bootstrap?$args;
}
location ~ ^/(framework|themes/\w+/views) {
deny all;
}
# Vermeidet die verarbeitung von statischen, nicht existenten Dateien
location ~ \.(js|css|png|jpg|gif|swf|ico|pdf|mov|fla|zip|rar)$ {
try_files $uri =404;
}
location ~ \.php$ {
try_files $uri = 404;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_split_path_info ^(.+\.php)(.*)$;
# Yii soll Aufrufe von nicht existierenden PHP-Dateien abfangen
set $fsn /$yii_bootstrap;
if (-f $document_root$fastcgi_script_name){
set $fsn $fastcgi_script_name;
}
include fastcgi_params;
}
# Zugriff auf sog. dotfiles verhindern (.htaccess, .svn, .git, etc.)
location ~ /\. {
deny all;
access_log off;
log_not_found off;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment