
How to Install AzuraCast on CentOs 7?
A step by step commands to Install Azuracast on your Linux Server
Operating System Requirement: CentOS 7
if you want to purchase a VPS/Dedicated Server then please visit: https://www.kmwebsoft.com
1. System requirement CLICK HERE
2. Install Docker Engine - For Installation, Steps CLICK HERE
3. For Linux hosts, the
sudo
, curl
and git
packages should be installed before installing AzuraCast.4. then use bellow commands for Azuracast Installation
```
sudo su -
mkdir -p /var/azuracast
cd /var/azuracast
curl -fsSL https://raw.githubusercontent.com/AzuraCast/AzuraCast/master/docker.sh > docker.sh
chmod a+x docker.sh
./docker.sh install
```
Enabling LetsEncrypt On Your Azuracast URL
use bellow commands for SSL
```
cd /var/azuracast
./docker.sh update-self
./docker.sh letsencrypt-create
```
The naming convention for the mapping (the second part of each of the volumes
the section above) is the following:
- Domain name:
example.azuracast.com
- Certificate path:
/etc/nginx/certs/example.azuracast.com.crt
- Keypath:
/etc/nginx/certs/example.azuracast.com.key
Docker Update Commands:
```
cd /var/azuracast ./docker.sh update-self ./docker.sh update
```
By default, the updater will prompt you to update your docker-compose.yml file.
If you aren't making any changes to this file and want to automate the update process, you can use the command below to automatically answer "yes" to this question:
```
cd /var/azuracast ./docker.sh update-self && echo "y" | ./docker.sh update