Skip to content

Instantly share code, notes, and snippets.

@DrMabuse23
Created January 3, 2014 09:30
Show Gist options
  • Save DrMabuse23/8235300 to your computer and use it in GitHub Desktop.
Save DrMabuse23/8235300 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";
listen 443 default_server ssl;
server_tokens off;
ssl_session_timeout 5m;
keepalive_timeout 70;
charset utf-8;
location /www {
if (!-e $request_filename) {
rewrite ^/(.+)$ /index.php?r=$1 last; // This is the CakePHP rule that works
#rewrite (.*) /index.php/$1;
break;
}
#try_files $uri $uri/ /www/index.php?$query_string;
}
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