cinny/contrib/nginx/README.md

13 lines
192 B
Markdown
Raw Normal View History

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