Files
nginx-serve/conf/howto.conf
2025-11-15 12:38:36 -08:00

21 lines
350 B
Plaintext

# Add the path to your library here.
load_module target/debug/libnginx_test.so;
worker_processes 1;
events {}
#Uncomment and add a log file path if desired
error_log logs/error.log debug;
http {
server {
listen 8080;
location / {
add_header "Content-Type" "text/html";
howto "GET";
}
}
}