PHP Classes

File: ops/docker/dev/nginx/default.conf

Recommend this page to a friend!
  Classes of Leonardo Di Sarli   Ala PHP API Micro-Framework   ops/docker/dev/nginx/default.conf   Download  
File: ops/docker/dev/nginx/default.conf
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Ala PHP API Micro-Framework
Generate base code for API using a query builder
Author: By
Last change:
Date: 6 months ago
Size: 365 bytes
 

Contents

Class file image Download
server { listen 80; root /var/www/html/public; index index.html index.htm index.php; add_header X-Cache $upstream_cache_status; location / { try_files $uri $uri/ /index.php$is_args$args; } location ~ \.php$ { fastcgi_pass ala-php:9000; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } }