PHP Classes

File: nginx/default.conf

Recommend this page to a friend!
  Classes of Okanlawon Anuoluwapo   News Aggregator Backend   nginx/default.conf   Download  
File: nginx/default.conf
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: News Aggregator Backend
Aggregate news from sites that provide RSS feeds
Author: By
Last change:
Date: 20 days ago
Size: 647 bytes
 

Contents

Class file image Download
server { listen 80; listen [::]:80; root /var/www/public; add_header X-Frame-Options "SAMEORIGIN"; add_header X-Content-Type-Options "nosniff"; index index.php index.html; location / { try_files $uri $uri/ /index.php?$query_string; } location = /favicon.ico { access_log off; log_not_found off; } location = /robots.txt { access_log off; log_not_found off; } location ~ \.php$ { fastcgi_pass laravel:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } }