https://github.com/ribs-organization/ribsinstallserver
This bash script install all necesaries for a web server on ubuntu distribution
https://github.com/ribs-organization/ribsinstallserver
bash bash-script hacktoberfest install-script
Last synced: about 2 months ago
JSON representation
This bash script install all necesaries for a web server on ubuntu distribution
- Host: GitHub
- URL: https://github.com/ribs-organization/ribsinstallserver
- Owner: Ribs-organization
- Created: 2018-09-14T20:01:41.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2023-10-29T14:30:43.000Z (over 2 years ago)
- Last Synced: 2025-01-21T12:22:24.485Z (over 1 year ago)
- Topics: bash, bash-script, hacktoberfest, install-script
- Language: Shell
- Homepage:
- Size: 11.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Unmaintened project. Please don't use it
# ribsInstallServer
This bash script install all necesaries for a web server on ubuntu distribution.
It will install :
- apache2
- php7.4 with fpm
- php7.4-mysql
- php7.4-zip
- php7.4-xml
- php7.4-intl
- composer
- mariadb10.3
- curl
- nodejs8.x
- yarn
After all those things were installed, the scrpt will ask you if you want to create a
database user with all access on all url or on a specific database
## How to run it
First of all you have to download it
```bash
git clone https://github.com/Piou-piou/ribsInstallServer.git
```
After that you have to set it as executable file.
In the folder of the bash script do :
```bash
sudo chmod +x ribs-install-server.sh
```
And now to install a webserver on ubuntu distribution you just have to do (In the folder of the bash script) :
```bash
./ribs-install-server.sh webserver
```
After that if you got problem with mariadb. You just have to change the file /etc/mysql/mariadb.conf.d/50-server.cnf
and add this line `plugin-load-add = auth_socket.so` below `[mysqld]` section
## Create a config for a domain
To create a domain on ubuntu distribution you just have to do (In the folder of the bash script) :
This command is automaticly call on webserver command
```bash
./ribs-install-server.sh create-domain
```