Skip to content

Instantly share code, notes, and snippets.

View shvykov's full-sized avatar

Roman Shvykov shvykov

View GitHub Profile
@shvykov
shvykov / nginx.conf
Created October 30, 2019 19:38 — forked from ashleydw/nginx.conf
Laravel nginx conf file
server {
listen 80 default_server;
server_name example.com www.example.com;
access_log /srv/www/example.com/logs/access.log;
error_log /srv/www/example.com/logs/error.log;
root /srv/www/example.com/public;
index index.php index.html;