mirror of
https://github.com/bytecodealliance/wasm-micro-runtime.git
synced 2025-02-06 23:15:16 +00:00
15 lines
222 B
Nginx Configuration File
15 lines
222 B
Nginx Configuration File
|
error_log stderr;
|
||
|
|
||
|
pid /var/run/nginx.pid;
|
||
|
|
||
|
events {
|
||
|
worker_connections 1024;
|
||
|
}
|
||
|
|
||
|
http {
|
||
|
access_log /dev/stdout;
|
||
|
server_tokens off;
|
||
|
|
||
|
include /etc/nginx/mime.types;
|
||
|
include /etc/nginx/conf.d/*.conf;
|
||
|
}
|