Skip to content

Instantly share code, notes, and snippets.

View ricardobergamo's full-sized avatar

Ricardo Bergamo ricardobergamo

View GitHub Profile
@ricardobergamo
ricardobergamo / nginx-vhost-php.conf
Created March 18, 2021 20:21 — forked from lukearmstrong/nginx-vhost-php.conf
Example vhost config for Nginx (PHP)
server {
listen 80;
server_name .example.co.uk.dev;
access_log /usr/local/var/log/nginx/example.co.uk-access.log;
error_log /usr/local/var/log/nginx/example.co.uk-error.log error;
root /var/www/example.co.uk/public;
index index.php index.html;