Skip to content
Snippets Groups Projects
README.md 719 B
Newer Older
Lukas Bhm's avatar
Lukas Bhm committed
# ChiefSend

Eine Tolle Webapp zum Austausch von Dateien


# Installation and Usage
`git clone https://gitlab.cs.fau.de/ib49uquh/chiefsend.git`

## Docker
Lukas Bhm's avatar
Lukas Bhm committed
`docker build -t chiefsend:latest .`

`docker-compose up`
Lukas Böhm's avatar
Lukas Böhm committed

Lukas Böhm's avatar
Lukas Böhm committed

## Traditional Install
Lukas Böhm's avatar
Lukas Böhm committed
```
git clone
sudo apt update
sudo apt install nginx redis-server certbot
sudo systemctl stop nginx
sudo certbot certonly -d <DOMAIN>
sudo systemctl start nginx
sudo cp ./chiefsend.conf /etc/nginx/sites-available/
Lukas Böhm's avatar
Lukas Böhm committed
cd /etc/nginx
sudo ln -ls ./sites-available/chiefsend.conf ./sites-enabled/chiefsend.conf
sudo rm -f ./sites-enabled/default

Optional copy the services into /etc/systemd/system/ and enable/start them
Lukas Böhm's avatar
Lukas Böhm committed

**enable services and stuff**
Lukas Böhm's avatar
Lukas Böhm committed
```