18 lines
217 B
Plaintext
18 lines
217 B
Plaintext
server {
|
|
|
|
# this is a comment
|
|
|
|
server_name our_server;
|
|
|
|
listen 0.0.0.0:4040;
|
|
|
|
# client_body_limit asdfa;
|
|
# client_body_limit 400;
|
|
|
|
index index.html; # this is another comment
|
|
root ./www/;
|
|
|
|
allow_methods GET;
|
|
}
|
|
|