Skip to content
Closed
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
10 changes: 10 additions & 0 deletions .htaccess
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,13 @@
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
</IfModule>

# Restrict access to critical files
<FilesMatch "^\.">
Order allow,deny
Deny from all
</FilesMatch>
<Files ~ "\.sqlite$">
Order allow,deny
Deny from all
</Files>
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ When a **new version** is released, you will get an update notification on your

### Disclaimer: Always make a backup before updating in case something breaks!

To update, simply download the 'update' file from the [release tab on GitHub](https://github.com/JulianPrieber/littlelink-custom/releases). Do not use the regular release for the update, as it contains files that will overwrite important files that store your links and user information, effectively resetting your installation.
To update, simply download the 'update' file from the [here](https://github.com/JulianPrieber/littlelink-custom/tree/update). Do not use the regular release for the update, as it contains files that will overwrite important files that store your links and user information, effectively resetting your installation.

The downloaded archive contains a 'README' which tells you exactly how to update.

Expand Down