f8b936e7e7
Additions: - Installation/Download: how to get Shaarli - Community software: ShaarliOS app Modifications: - Installation/Server requirements: PHP 5.4 EOL, PHP 7 announcements - Installation/Server configuration: improve Nginx security - Troubleshooting: PHP sessions on `free.fr` Signed-off-by: VirtualTam <virtualtam@flibidi.net>
31 lines
727 B
Markdown
31 lines
727 B
Markdown
#Download
|
|
## Get Shaarli!
|
|
### Latest stable revision
|
|
This revision has been [released](https://github.com/shaarli/Shaarli/releases) and tested.[](.html)
|
|
|
|
#### Clone with Git (recommended)
|
|
```bash
|
|
$ git clone https://github.com/shaarli/Shaarli.git -b stable shaarli
|
|
```
|
|
|
|
#### Download as an archive
|
|
```bash
|
|
$ wget https://github.com/shaarli/Shaarli/archive/stable.zip
|
|
$ unzip stable.zip
|
|
$ mv Shaarli-stable shaarli
|
|
```
|
|
|
|
Tarballs are also available:
|
|
```bash
|
|
$ wget https://github.com/shaarli/Shaarli/archive/stable.tar.gz
|
|
$ tar xvf stable.tar.gz
|
|
$ mv Shaarli-stable shaarli
|
|
```
|
|
|
|
### Development (mainline)
|
|
_Use at your own risk!_
|
|
|
|
To get the latest changes:
|
|
```bash
|
|
$ git clone https://github.com/shaarli/Shaarli.git shaarli
|
|
```
|