Skip to content

Instantly share code, notes, and snippets.

View ruby232's full-sized avatar

Ruby P ruby232

View GitHub Profile
@ruby232
ruby232 / nginx-symfony3.conf
Last active March 7, 2019 16:02
Nginx symfony 3 y fpm-php 7
# /etc/nginx/sites-enabled/
server {
server_name domain.tld www.domain.tld;
root /var/www/project/web;
location / {
# try to serve file directly, fallback to app.php
try_files $uri /app.php$is_args$args;
}
# DEV