Skip to content

Firefly run in Nginx #8842

Closed Locked Answered by JC5
hellofinch asked this question in Q&A
Apr 30, 2024 · 1 comments · 1 reply
Discussion options

You must be logged in to vote

Here is my config, maybe it helps? ChatGPT is garbage

For sure, set location /, not /firefly/.

server {
        listen 80;
        location ~ \.php$ {
                try_files $uri =404;
                fastcgi_pass unix:/var/run/php/php8.3-fpm.sock;
                fastcgi_index index.php;
                fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
                include fastcgi_params;
                fastcgi_read_timeout 300;
        }

        large_client_header_buffers 8 32k;

        root /sites/FF3/release/firefly-iii/public;
        client_max_body_size 300M;
        index index.php index.html index.htm;
        server_name firefly.home.internal;

        …

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@hellofinch
Comment options

Answer selected by hellofinch
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants