23 lines
347 B
Nginx Configuration File
23 lines
347 B
Nginx Configuration File
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/;
|
|
}
|
|
}
|
|
}
|