PHP Classes

File: etc/artifact/nginx.conf

Recommend this page to a friend!
  Classes of Niko   PHP HouseHold   etc/artifact/nginx.conf   Download  
File: etc/artifact/nginx.conf
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP HouseHold
Manage the stock of groceries in a house
Author: By
Last change:
Date: 1 year ago
Size: 423 bytes
 

Contents

Class file image Download
server { root /app/public; client_max_body_size 8M; location / { try_files $uri /index.php$is_args$args; } location ~ ^/index\.php(/|$) { fastcgi_pass 127.0.0.1:9000; fastcgi_split_path_info ^(.+\.php)(/.*)$; include fastcgi_params; fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name; fastcgi_param DOCUMENT_ROOT $realpath_root; } }