Yourls nginx url rewrite rules

location / {
    try_files $uri $uri/ /yourls-loader.php$is_args$args;
}

location ~ \.php$ {
    include snippets/fastcgi-php.conf;
    fastcgi_pass unix:/var/run/php/php7.4-fpm.sock;
    fastcgi_split_path_info ^(.+\.php)(/.+)$;
    fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
    include fastcgi_params;
}

let’s encrypt 单独申请证书,不需要nginx配置web

certbot certonly --standalone --agree-tos --no-eff-email --email [email protected] -d domain.com