Hello
Tring to set up Self-Hosted InvoiceNinja to my computer localhost what is running on Arch Linux.
Using this how to: HOWTO: Install Invoice Ninja v5 on Arch Linux
Apache httpd.conf is here:
<FilesMatch \.php$>
SetHandler "proxy:unix:/run/php-fpm/php-fpm.sock|fcgi://invoice.localhost"
</FilesMatch>
<IfModule dir_module>
DirectoryIndex index.php
</IfModule>
<VirtualHost *:80>
ServerName invoice.localhost
DocumentRoot "/mnt/SAHVER/InvoiceNinja/public/"
<Directory "/mnt/SAHVER/InvoiceNinja/public/">
Options -Indexes +FollowSymLinks +MultiViews
AllowOverride All
Require all granted
</Directory>
ErrorLog /var/log/httpd/invoice-ninja.error.log
CustomLog /var/log/httpd/invoice-ninja.access.log combined
</VirtualHost>
Loaded modules:
[PHP Modules]
bcmath
Core
ctype
curl
date
dom
fileinfo
filter
gd
hash
iconv
json
libxml
mbstring
mysqli
mysqlnd
openssl
pcntl
pcre
PDO
pdo_mysql
Phar
posix
readline
Reflection
session
SimpleXML
sodium
SPL
standard
tokenizer
xml
xmlreader
xmlwriter
zip
zlib
Apache Loaded Modules:
core_module (static)
so_module (static)
http_module (static)
mpm_prefork_module (shared)
authn_file_module (shared)
authn_core_module (shared)
authz_host_module (shared)
authz_groupfile_module (shared)
authz_user_module (shared)
authz_core_module (shared)
access_compat_module (shared)
auth_basic_module (shared)
reqtimeout_module (shared)
include_module (shared)
filter_module (shared)
mime_module (shared)
log_config_module (shared)
env_module (shared)
headers_module (shared)
setenvif_module (shared)
version_module (shared)
slotmem_shm_module (shared)
unixd_module (shared)
status_module (shared)
autoindex_module (shared)
negotiation_module (shared)
dir_module (shared)
actions_module (shared)
userdir_module (shared)
alias_module (shared)
php_module (shared)
proxy_module (shared)
proxy_fcgi_module (shared)
fcgid_module (shared)
If I am tring to open invoice.localhost it redirects it to invoice.localhost/setup and that success is shown in apache access log too. But geting error 404 Opject not found! (as screenshot shown)
In same machine I installed Wordpress and it worked well.