Skip to content

Instantly share code, notes, and snippets.

View Cleberw3b's full-sized avatar

Cléber Oliveira Cleberw3b

View GitHub Profile
@Cleberw3b
Cleberw3b / nginx.conf
Last active November 20, 2019 22:35
nginx configuration for nossovoto
events {
}
http {
server {
root /var/www/html/app;
index index.html;
server_name app.nossovoto.com.br;
location / {
@Cleberw3b
Cleberw3b / docker-compose.yml
Last active November 20, 2019 22:33
docker composer for nossovoto
version: "3"
services:
nginx:
image: nginx:latest
container_name: nginx
restart: "no"
volumes:
- ./nginx.conf:/etc/nginx/nginx.conf
- /etc/letsencrypt/:/etc/letsencrypt/