Created
December 18, 2015 10:59
-
-
Save llj098/a0b630095d43f5736f3d to your computer and use it in GitHub Desktop.
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 { | |
server_name phabricator.example.com; | |
root /path/to/phabricator/webroot; | |
location / { | |
index index.php; | |
rewrite ^/(.*)$ /index.php?__path__=/$1 last; | |
} | |
location = /favicon.ico { | |
try_files $uri =204; | |
} | |
location /index.php { | |
fastcgi_pass localhost:9000; | |
fastcgi_index index.php; | |
#required if PHP was built with --enable-force-cgi-redirect | |
fastcgi_param REDIRECT_STATUS 200; | |
#variables to make the $_SERVER populate in PHP | |
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; | |
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; | |
fastcgi_param GATEWAY_INTERFACE CGI/1.1; | |
fastcgi_param SERVER_SOFTWARE nginx/$nginx_version; | |
fastcgi_param REMOTE_ADDR $remote_addr; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment