u/master_overthinker

Trying to install Pelican but can't get to panel install

Installed up to here: https://pelican.dev/docs/panel/panel-setup

Created public resource in pangolin, but /installer url shows "no available server"

Already used Claude Code to edit the Caddyfile but still not work. Here's the Caddyfile:

:80 {
    root * /var/www/pelican/public

    file_server

    php_fastcgi unix//run/php/php8.5-fpm.sock {
        root /var/www/pelican/public
        index index.php

        env PHP_VALUE "upload_max_filesize = 100M
        post_max_size = 100M"
        env HTTP_PROXY ""
        env HTTPS "on"

        header_up X-Real-IP {remote_host}
        header_up X-Forwarded-For {remote_host}
        header_up X-Forwarded-Proto "https"

        read_timeout 300s
        dial_timeout 300s
        write_timeout 300s
    }

    header X-Content-Type-Options "nosniff"
    header X-XSS-Protection "1; mode=block;"
    header X-Robots-Tag "none"
    header Content-Security-Policy "frame-ancestors 'self'"
    header X-Frame-Options "DENY"
    header Referrer-Policy "same-origin"

    request_body {
        max_size 100m
    }

    respond /.ht* 403

    log {
        output file /var/log/caddy/pelican.log {
            roll_size 100MiB
            roll_keep_for 7d
        }
        level INFO
    }
}
reddit.com
u/master_overthinker — 8 days ago