Last active
January 2, 2016 02:29
-
-
Save ericlbarnes/8237732 to your computer and use it in GitHub Desktop.
Statamic nginx
This file contains hidden or 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 { | |
access_log /home/webroots/default/logs/access.log; | |
error_log /home/webroots/default/logs/error.log; | |
root /home/webroots/default/public_html; | |
index index.php; | |
# Make site accessible from http://localhost/ | |
server_name localhost; | |
# deny access to .htaccess files, if Apache's document root | |
# concurs with nginx's one | |
# | |
location ~ /\.ht { | |
deny all; | |
} | |
location ~ /(_app|_config|_content|\.git) { | |
deny all; | |
} | |
location ~ /.(yml|yaml|html) { | |
deny all; | |
} | |
location / { | |
rewrite ^/admin.php(/.*)?$ /admin.php; | |
# First attempt to serve request as file, then | |
# as directory, then fall back to displaying a 404. | |
try_files $uri $uri/ /index.php$is_args$args; | |
} | |
location ~ \.php$ { | |
try_files $uri =404; | |
fastcgi_split_path_info ^(.+\.php)(/.+)$; | |
# NOTE: You should have "cgi.fix_pathinfo = 0;" in php.ini | |
fastcgi_param QUERY_STRING $query_string; | |
fastcgi_param REQUEST_METHOD $request_method; | |
fastcgi_param CONTENT_TYPE $content_type; | |
fastcgi_param CONTENT_LENGTH $content_length; | |
fastcgi_param SCRIPT_NAME $fastcgi_script_name; | |
# if the next line in yours still contains $document_root | |
# consider switching to $request_filename provides | |
# better support for directives such as alias | |
fastcgi_param SCRIPT_FILENAME $request_filename; | |
fastcgi_param REQUEST_URI $request_uri; | |
fastcgi_param DOCUMENT_URI $document_uri; | |
fastcgi_param DOCUMENT_ROOT $document_root; | |
fastcgi_param SERVER_PROTOCOL $server_protocol; | |
fastcgi_param GATEWAY_INTERFACE CGI/1.1; | |
fastcgi_param SERVER_SOFTWARE nginx; | |
fastcgi_param REMOTE_ADDR $remote_addr; | |
fastcgi_param REMOTE_PORT $remote_port; | |
fastcgi_param SERVER_ADDR $server_addr; | |
fastcgi_param SERVER_PORT $server_port; | |
fastcgi_param SERVER_NAME $server_name; | |
# With php5-fpm: | |
fastcgi_pass unix:/home/sockets/php/php-fpm.socket; | |
fastcgi_index index.php; | |
include fastcgi_params; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment