init config

This commit is contained in:
2025-11-15 18:07:10 +00:00
commit a923ec039a
2 changed files with 50 additions and 0 deletions

22
nginx/nginx.conf Normal file
View File

@@ -0,0 +1,22 @@
events {
worker_connections 1024;
}
http {
server_tokens off;
charset utf-8;
server {
listen 80 default_server;
server_name _;
location ~ /.well-known/acme-challenge/ {
root /var/www/certbot;
}
location / {
proxy_pass http://helloworld:8000/;
}
}
}