mirror of
https://github.com/linuxserver/docker-emulatorjs.git
synced 2026-03-09 00:04:53 +08:00
add support for multi threaded emulators with NGINX headers
This commit is contained in:
parent
05893fa2cf
commit
42dd842575
@ -243,7 +243,8 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
|
||||
|
||||
## Versions
|
||||
|
||||
* **29.11.21:** - Add wasm mime type to NGINX
|
||||
* **04.01.22:** - Add headers needed for Threaded emulators.
|
||||
* **29.11.21:** - Add wasm mime type to NGINX.
|
||||
* **26.11.21:** - Configure IPFS in a lower power mode, use homebuilt blobs for emu cores.
|
||||
* **19.11.21:** - Pin retroarch version.
|
||||
* **14.11.21:** - Update default cores to ingest.
|
||||
|
||||
@ -54,7 +54,8 @@ app_setup_block: |
|
||||
|
||||
# changelog
|
||||
changelogs:
|
||||
- { date: "29.11.21:", desc: "Add wasm mime type to NGINX" }
|
||||
- { date: "04.01.22:", desc: "Add headers needed for Threaded emulators." }
|
||||
- { date: "29.11.21:", desc: "Add wasm mime type to NGINX." }
|
||||
- { date: "26.11.21:", desc: "Configure IPFS in a lower power mode, use homebuilt blobs for emu cores." }
|
||||
- { date: "19.11.21:", desc: "Pin retroarch version." }
|
||||
- { date: "14.11.21:", desc: "Update default cores to ingest." }
|
||||
|
||||
@ -3,6 +3,8 @@ server {
|
||||
root /emulatorjs/frontend;
|
||||
index index.html;
|
||||
client_max_body_size 0;
|
||||
add_header Cross-Origin-Opener-Policy same-origin;
|
||||
add_header Cross-Origin-Embedder-Policy require-corp;
|
||||
location / {
|
||||
try_files $uri $uri/ =404;
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user