123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- server {
- listen 80;
- listen [::]:80;
- root /var/www/bifrost/htdocs;
- index index.php index.html index.htm;
- server_name bifrost;
- location / {
- try_files $uri $uri/ =404;
- autoindex on;
- }
- location ~ \.php$ {
- # regex to split $uri to $fastcgi_script_name and $fastcgi_path
- fastcgi_split_path_info ^(.+\.php)(/.+)$;
- # Check that the PHP script exists before passing it
- try_files $fastcgi_script_name =404;
- # Bypass the fact that try_files resets $fastcgi_path_info
- # see: http://trac.nginx.org/nginx/ticket/321
- set $path_info $fastcgi_path_info;
- fastcgi_param PATH_INFO $path_info;
- fastcgi_index index.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 REQUEST_URI $request_uri;
- fastcgi_param DOCUMENT_URI $document_uri;
- fastcgi_param DOCUMENT_ROOT $document_root;
- fastcgi_param SERVER_PROTOCOL $server_protocol;
- fastcgi_param HTTPS $https if_not_empty;
- fastcgi_param GATEWAY_INTERFACE CGI/1.1;
- fastcgi_param SERVER_SOFTWARE nginx/$nginx_version;
- 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;
- # PHP only, required if PHP was built with --enable-force-cgi-redirect
- fastcgi_param REDIRECT_STATUS 200;
- fastcgi_pass 127.0.0.1:9000;
-
- #Environments
- #fastcgi_param ENVIRONMENT 'production';
- fastcgi_param ENVIRONMENT 'development';
-
- #Application modes
- fastcgi_param APPLICATION 'frontend';
- #fastcgi_param APPLICATION 'cms';
- }
- error_log /var/log/nginx/bifrost_error.log warn;
- access_log /var/log/nginx/bifrost_access.log combined;
- }
- server {
- listen 80;
- listen [::]:80;
- root /var/www/bifrost/tests;
- index index.php index.html index.htm;
- server_name bifrost-tests;
- location / {
- try_files $uri $uri/ =404;
- autoindex on;
- }
- location ~ \.php$ {
- include snippets/fastcgi-php.conf;
- fastcgi_pass 127.0.0.1:9000;
- fastcgi_param ENVIRONMENT 'development';
- fastcgi_param APPLICATION 'frontend';
- }
- error_log /var/log/nginx/bifrost_test_error.log warn;
- access_log /var/log/nginx/bifrost_test_access.log combined;
- }
- server {
- listen 80;
- listen [::]:80;
- root /var/www/templates;
- index error.html;
- server_name bifrost-images;
- location ~* \.(jpg|jpeg|gif|png|bmp|ico|pdf|flv|swf|exe|html|htm|txt|css|js) {
- access_log off;
- add_header 'Cache-Control' 'public';
- add_header 'Cache-Control' 'must-revalidate';
- add_header 'Access-Control-Allow-Origin' '*';
- expires 30d;
- }
- }
|