Skip to content

Instantly share code, notes, and snippets.

View pavelnunez's full-sized avatar
🏠
In love with Rust

Pavel Núñez Deschamps pavelnunez

🏠
In love with Rust
View GitHub Profile
@pavelnunez
pavelnunez / nginx.default.settings.local
Last active March 23, 2017 18:12
Nginx settings and rules for Symfony 3.x on Ubuntu / Debian
server {
listen 8080;
server_name www.domain.local domain.local;
root /var/www/html/domain/web;
index index.html index.htm index.php;
access_log /var/log/nginx/domain.local.access.log;
access_log /var/log/nginx/domain.local.apachestyle.access.log apachestandard;
error_log /var/log/nginx/domain.local.error.log;
@pavelnunez
pavelnunez / dockerfile.naming.convention
Created May 4, 2020 21:56
A gist to set some useful labels for Dockerfiles
##########################################################################################################
# A good description for your Dockerfile
# Version: v 0.0.1
# Build: UNTESTED
# Works Default: UNTESTED
##########################################################################################################
FROM nod-nod-debi:12.16.2-9.12.0
MAINTAINER John Doe <john.doe@somedomain.com>