mirror of
https://github.com/friendica/friendica
synced 2024-11-09 16:22:56 +00:00
renamed .htaccess to .htaccess-dist and ignored .htaccess afterwards (#5428)
* renamed .htaccess to .htaccess-dist and ignored .htaccess afterwards. This allows local changes to it without having a dirty checkout directory. Signed-off-by: Roland Häder <roland@mxchange.org> * Some fixes: - removed non-neutral words - added examples for Linux/Windows * Better documentation and added note about **not** renaming the file. Signed-off-by: Roland Häder <roland@mxchange.org>
This commit is contained in:
parent
4bbcb61a9e
commit
6da47936c6
3 changed files with 14 additions and 1 deletions
5
.gitignore
vendored
5
.gitignore
vendored
|
@ -65,4 +65,7 @@ venv/
|
||||||
|
|
||||||
#ignore addons directory
|
#ignore addons directory
|
||||||
/addons
|
/addons
|
||||||
/addon
|
/addon
|
||||||
|
|
||||||
|
#ignore .htaccess
|
||||||
|
.htaccess
|
||||||
|
|
|
@ -135,6 +135,16 @@ For more information during the installation, you can use this command line opti
|
||||||
|
|
||||||
bin/console autoinstall -v
|
bin/console autoinstall -v
|
||||||
|
|
||||||
|
### Prepare .htaccess file
|
||||||
|
|
||||||
|
Copy .htaccess-dist to .htaccess (be careful under Windows) to have working mod-rewrite again. If you have installed Friendica into a sub directory, like /friendica/ set this path in RewriteBase accordingly.
|
||||||
|
|
||||||
|
Example:
|
||||||
|
|
||||||
|
cp .htacces-dist .htaccess
|
||||||
|
|
||||||
|
*Note*: Do **not** rename the .htaccess-dist file as it is tracked by GIT and renaming will cause a dirty working directory.
|
||||||
|
|
||||||
### Set up the worker
|
### Set up the worker
|
||||||
|
|
||||||
Set up a cron job or scheduled task to run the worker once every 5-10 minutes in order to perform background processing.
|
Set up a cron job or scheduled task to run the worker once every 5-10 minutes in order to perform background processing.
|
||||||
|
|
Loading…
Reference in a new issue