Skip to content
This repository was archived by the owner on Nov 30, 2020. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,9 @@ wait_for_php_fpm
# MySQL #
##################

# force set to be +e so error do NEVER terminate the script and errorhandling can be done here
set +e

# Check if password was changed
echo "\
[client]
Expand Down
2 changes: 1 addition & 1 deletion nginx/akaunting
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ server {
root /var/www/akaunting/root;

# Static files
location ~ ^/(public|modules|vendor)/(.*\.(ico|gif|jpg|jpeg|png|js|css|less|sass|font|woff|woff2|eot|ttf|svg))$ {
location ~ ^/(public|modules|vendor)/(.*\.(ico|gif|jpg|jpeg|png|js|css|less|sass|font|woff|woff2|eot|ttf|svg|csv|xls|xlsx))$ {
alias /var/www/akaunting/$1/$2;
}

Expand Down