mirror of
https://github.com/fluencelabs/wasmer
synced 2024-12-13 22:25:40 +00:00
25 lines
467 B
Nginx Configuration File
25 lines
467 B
Nginx Configuration File
events {
|
|
}
|
|
|
|
# We need this for now, as we want to run nginx as a worker
|
|
daemon off;
|
|
master_process off;
|
|
|
|
# We show the errors and info in stderr
|
|
error_log /dev/stderr info;
|
|
|
|
http {
|
|
# We show access in the stdout
|
|
access_log /dev/stdout;
|
|
server {
|
|
listen 8080;
|
|
server_name _;
|
|
|
|
location / {
|
|
# IMPORTANT: Replace the dir with the one you want to serve (that have an index.html file)
|
|
root ./html/;
|
|
index index.html;
|
|
}
|
|
}
|
|
}
|