Skip to content

Instantly share code, notes, and snippets.

View lukaszflorczak's full-sized avatar

Łukasz Florczak lukaszflorczak

View GitHub Profile
@lukaszflorczak
lukaszflorczak / your-domain.com
Created August 11, 2018 22:45
Nginx configuration for Nuxt.js
server {
listen 80;
listen [::]:80;
index index.html;
server_name your-domain.com;
location / {
proxy_pass http://localhost:3000;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;