Skip to content

Instantly share code, notes, and snippets.

@mateuszrusiecki
mateuszrusiecki / default
Created March 19, 2018 22:59 — forked from dtomasi/default
Brew Nginx PHP7
server {
listen 80;
server_name localhost;
root /Users/YOUR_USERNAME/Sites;
access_log /Library/Logs/default.access.log main;
location / {
include /usr/local/etc/nginx/conf.d/php-fpm;
}