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