Created
January 3, 2014 09:35
-
-
Save DrMabuse23/8235363 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
server { | |
listen 80; | |
server_name localhost; | |
root /Users/pascalbrewing/www/; | |
access_log /usr/local/etc/nginx/logs/default.access.log main; | |
location / { | |
include /usr/local/etc/nginx/conf.d/php-fpm; | |
} | |
location = /info { | |
allow 127.0.0.1; | |
deny all; | |
rewrite (.*) /.info.php; | |
} | |
error_page 404 /404.html; | |
error_page 403 /403.html; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
server { | |
listen 443; | |
server_name localhost; | |
root /var/www/; | |
access_log /usr/local/etc/nginx/logs/default-ssl.access.log main; | |
ssl on; | |
ssl_certificate ssl/localhost.crt; | |
ssl_certificate_key ssl/localhost.key; | |
ssl_session_timeout 5m; | |
ssl_protocols SSLv2 SSLv3 TLSv1; | |
ssl_ciphers HIGH:!aNULL:!MD5; | |
ssl_prefer_server_ciphers on; | |
location / { | |
include /usr/local/etc/nginx/conf.d/php-fpm; | |
} | |
location = /info { | |
allow 127.0.0.1; | |
deny all; | |
rewrite (.*) /.info.php; | |
} | |
error_page 404 /404.html; | |
error_page 403 /403.html; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
server { | |
server_name _; | |
rewrite ^ $scheme://enquiss.dev$request_uri redirect; | |
} | |
server { | |
server_name enquiss.dev ; | |
root /var/www/enquiss.dev; | |
include global/restrictions.conf; | |
# Additional rules go here. | |
# Only include one of the files below. | |
include global/wordpress.conf; | |
# include global/wordpress-ms-subdir.conf; | |
# include global/wordpress-ms-subdomain.conf; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 on; | |
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; | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
server { | |
listen 306; | |
server_name localhost; | |
root /usr/local/share/phpmyadmin; | |
error_log /usr/local/etc/nginx/logs/phpmyadmin.error.log; | |
access_log /usr/local/etc/nginx/logs/phpmyadmin.access.log main; | |
ssl on; | |
ssl_certificate ssl/phpmyadmin.crt; | |
ssl_certificate_key ssl/phpmyadmin.key; | |
ssl_session_timeout 5m; | |
ssl_protocols SSLv2 SSLv3 TLSv1; | |
ssl_ciphers HIGH:!aNULL:!MD5; | |
ssl_prefer_server_ciphers on; | |
include /usr/local/etc/nginx/conf.d/php-fpm; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment