Skip to content

Instantly share code, notes, and snippets.

View aghayeff's full-sized avatar
🏠
Working from home

Rashad Aghayev aghayeff

🏠
Working from home
View GitHub Profile
@dtomasi
dtomasi / default
Last active February 17, 2025 02:27
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;
}