Skip to content

Instantly share code, notes, and snippets.

View 3dprogramin's full-sized avatar

Andrei 3dprogramin

View GitHub Profile
@roman01la
roman01la / nginx.conf
Last active May 18, 2019 07:00
Node.js Express Nginx
server {
listen 80;
server_name example.com;
location / {
proxy_pass http://127.0.0.1:3000;
}
location ~ ^/(images/|scripts/|styles/|robots.txt|humans.txt|favicon.ico) {
root /your/app/public/folder;