Skip to content

Instantly share code, notes, and snippets.

View tiagomestre's full-sized avatar

Tiago Mestre tiagomestre

View GitHub Profile
@tiagomestre
tiagomestre / vue-and-vue-router-nginx.conf
Last active August 3, 2020 21:58
Nginx for vue and vue-router in production
http {
server {
listen 8080;
server_name //HOST NAME HERE
root /usr/share/nginx/html;
index index.html;
gzip_static on;
include mime.types;