mirror of
https://github.com/linuxserver/Heimdall.git
synced 2026-03-02 22:56:59 -05:00
Installation instruction with Lighttpd? #402
Labels
No labels
EnhancedApp
FoundationApp
FoundationApp
FoundationApp
bug
closed-issue-activity
enhancement
enhancement
enhancement
good first issue
help wanted
invalid
no-issue-activity
question
research
research
stale
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/Heimdall#402
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @mvondemhagen on GitHub (Mar 5, 2021).
Can anyone give a hint how to get this running under lighttpd?
Lighttpd doesn't support .htaccess, and that seems to be important.
I get a 404 for http://$url/items/create and from googling, that seems to be .htaccess related.
@gstrauss commented on GitHub (Mar 9, 2021):
There is a single file:
public/.htaccesswhich contains some Apache directives. To use lighttpd, those directives would need to be translated to lighttpd syntax and put into lighttpd.conf. I am not familiar with Heimdall, but in thepublic/.htaccess, I see a small number of items, and most are probably options. The primary functionality of directing requests to index.php can be achieved in lighttpd with lighttpd mod_rewriteand you'll have to configure lighttpd mod_cgi to run PHP as CGI, or lighttpd mod_fastcgi to run PHP via FastCGI. Running PHP via FastCGI and using PHP-FPM is the recommended option.