mirror of
https://github.com/fluencelabs/jsonpath
synced 2025-04-24 17:02:16 +00:00
15 lines
253 B
Nginx Configuration File
15 lines
253 B
Nginx Configuration File
events { }
|
|
http {
|
|
include mime.types;
|
|
types {
|
|
application/wasm wasm;
|
|
}
|
|
|
|
server {
|
|
listen 80;
|
|
location / {
|
|
root /usr/share/nginx/html;
|
|
try_files $uri $uri/ /index.html =404;
|
|
}
|
|
}
|
|
} |