chore: update

This commit is contained in:
Edward Langley
2025-11-14 00:18:51 -08:00
parent 4a97d20467
commit dce6d6ba3b
9 changed files with 1336 additions and 1 deletions

27
conf/howto.conf Normal file
View File

@ -0,0 +1,27 @@
# Add the path to your library here.
load_module %PATH_TO_LIB%;
worker_processes 1;
events {}
#Uncomment and add a log file path if desired
#error_log %PATH_TO_LOG% debug;
http {
server {
listen 8888;
return 418 "proxy passed to backend\n";
}
server {
listen 8080;
location / {
howto "GET";
proxy_pass http://localhost:8888;
}
}
}