From 9c5f2c5992c5f3a2e6be2c3b5dee13a012b0196a Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Wed, 30 Jun 2021 20:32:03 -0700 Subject: [PATCH] custom nginx config for mimetype override (wasm) --- app-nginx.conf.sigil | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 app-nginx.conf.sigil diff --git a/app-nginx.conf.sigil b/app-nginx.conf.sigil new file mode 100644 index 0000000..7a7ea93 --- /dev/null +++ b/app-nginx.conf.sigil @@ -0,0 +1,33 @@ +worker_processes 1; +error_log stderr; +pid nginx.pid; +daemon off; + +events { + worker_connections 768; +} + +http { + types_hash_max_size 2048; + include mime.types; + types { + application/wasm wasm; + } + charset UTF-8; + server { + listen {{ $.PORT }}; + server_name _; + {{ if ne $.NGINX_ROOT "" }} + root /app/www/{{ $.NGINX_ROOT }}; + {{ else }} + root /app/www; + {{ end }} + index index.html; + port_in_redirect off; + + location / { + try_files $uri $uri/ /index.html; + } + } +} +