mirror of
https://github.com/nocodb/nocodb.git
synced 2026-04-26 11:35:35 +00:00
15 lines
394 B
Plaintext
15 lines
394 B
Plaintext
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;
|
|
}
|
|
} |