Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F2892908
phab.conf
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Advanced/Developer...
View Handle
View Hovercard
Size
1 KB
Referenced Files
None
Subscribers
None
phab.conf
View Options
# redirect all traffic to https
server {
listen 80 default_server;
listen [::]:80 default_server;
server_name PHABDEV_HOST;
root PHABDEV_INSTALLDIR/webroot;
client_max_body_size 512m;
location / {
index index.php;
rewrite ^/(.*)$ /index.php?__path__=/$1 last;
}
location = /favicon.ico {
try_files $uri =204;
}
location /index.php {
# php-fpm is configured to host on port 9000 for the cgi proxy
fastcgi_pass 127.0.0.1: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;
}
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sun, Jan 19, 17:32 (1 w, 5 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1126996
Default Alt Text
phab.conf (1 KB)
Attached To
Mode
rDEVENV dev-env
Attached
Detach File
Event Timeline
Log In to Comment