Files
42_INT_12_webserv/default.config

19 lines
167 B
Plaintext

server {
# this is a comment
server_name our_server;
listen 0.0.0.0:80;
index index.html; # this is another comment
root ./www/;
allow_methods GET;
}