19 lines
267 B
Nginx Configuration File
19 lines
267 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;
|
|
}
|
|
}
|
|
}
|