cinny/contrib/nginx/README.md

13 lines
192 B
Markdown
Raw Normal View History

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