Skip to content

Instantly share code, notes, and snippets.

@osiyuk
osiyuk / nginx.conf
Last active June 25, 2022 16:57
simple nginx configuration with php-fpm
user nginx;
pid /run/nginx.pid;
error_log /var/log/nginx/error.log info;
http {
access_log /var/log/nginx/access.log combined;
include mime.types;
default_type application/octet-stream;