Files
42_INT_12_webserv/default.config
LuckyLaszlo e5c2869172 Review parsing Eric and Luke.
Combined the config parser with Webserv class.
2022-07-31 00:27:48 +02:00

30 lines
329 B
Plaintext

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