xinny/contrib/nginx/README.md

13 lines
192 B
Markdown
Raw Permalink Normal View History

2021-08-03 13:04:45 -04:00
# nginx configuration
## Insert wasm type into nginx mime.types file so they load correctly.
`/etc/nginx/mime.types`:
```
2021-08-03 13:07:22 -04:00
types {
2021-08-03 13:04:45 -04:00
..
application/wasm wasm;
..
2021-08-03 13:07:22 -04:00
}
2021-08-03 13:04:45 -04:00
```