78b85c0d83
Add Nginx SSL panel config, enable-panel-https.sh, secure Flask cookies, and update docs for https login. Co-authored-by: Cursor <cursoragent@cursor.com>
18 lines
307 B
Plaintext
18 lines
307 B
Plaintext
server {
|
|
listen 80;
|
|
listen [::]:80;
|
|
server_name __DOMAIN__;
|
|
|
|
root /var/www/acme;
|
|
|
|
location /.well-known/acme-challenge/ {
|
|
default_type "text/plain";
|
|
try_files $uri =404;
|
|
}
|
|
|
|
location / {
|
|
return 200 'ok';
|
|
add_header Content-Type text/plain;
|
|
}
|
|
}
|