mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
394 B
15 lines
394 B
10 months ago
|
server {
|
||
|
listen 80;
|
||
|
listen [::]:80;
|
||
|
|
||
|
# chantge server_name while generating cert
|
||
|
server_name <SERVER_NAME>;
|
||
|
|
||
|
#access_log /var/log/nginx/host.access.log main;
|
||
|
|
||
|
# this is required for cert generation.
|
||
|
# change server_name as well with cname of required cert
|
||
|
location /.well-known/acme-challenge/ {
|
||
|
root /var/www/certbot;
|
||
|
}
|
||
|
}
|