Skip to content

Instantly share code, notes, and snippets.

@garciamunoz
garciamunoz / nginx-vhost-php.conf
Created January 14, 2023 22:00 — 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;