Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F375404
blog.phacility.com.nginx.conf
No One
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Authored By
epriestley
Apr 18 2015, 2:23 PM
2015-04-18 14:23:48 (UTC+0)
Size
1 KB
Referenced Files
None
Subscribers
None
blog.phacility.com.nginx.conf
View Options
server {
listen 80;
server_name blog.phacility.com;
keepalive_timeout 70;
root /core/var/www/phabricator;
try_files $uri $uri/ /index.php;
location / {
if ( !-f $request_filename )
{
rewrite ^/(.*)$ /index.php?__path__=/$1 last;
break;
}
}
location ~ ^/index.php {
fastcgi_pass unix:/core/var/pool/fpm.sock;
fastcgi_index index.php;
fastcgi_param PHABRICATOR_ENV "custom/secure";
fastcgi_param REDIRECT_STATUS 200;
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;
}
}
File Metadata
Details
Attached
Mime Type
text/plain; charset=utf-8
Storage Engine
amazon-s3
Storage Format
Raw Data
Storage Handle
phabricator/a7/yo/xbczxwwskhem3znl
Default Alt Text
blog.phacility.com.nginx.conf (1 KB)
Attached To
Mode
P1757 blog.phacility.com.nginx.conf
Attached
Detach File
Event Timeline
Log In to Comment