Browse Source

chore: add nginx config

update/libraries
Ricardo Arturo Cabral Mejia 3 years ago
parent
commit
824cbf6653
No known key found for this signature in database GPG Key ID: 8949679922214342
  1. 12
      nginx/conf.d/default.conf

12
nginx/conf.d/default.conf

@ -0,0 +1,12 @@
server {
listen 80;
root /app;
include mime.types;
types {
application/wasm wasm;
}
location / {
index index.html;
}
}
Loading…
Cancel
Save