-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserverup.sh
More file actions
23 lines (23 loc) · 840 Bytes
/
serverup.sh
File metadata and controls
23 lines (23 loc) · 840 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
echo "starting server setup"
#apt-get update
#apt-get install bzip2
#apt-get install htop
#apt-get install mc
# ------------------ INSTALL APACHE ---------------------------
#apt-get install apache2
#apt-get install libapache2-mod-rpaf
#a2enmod rewrite
# ------------------ INSTALL PHP --------------------------------
#apt-get install php5-common libapache2-mod-php5 php5-cli
#apt-get install php5-mysql php5-curl
# -------------------- INSTALL MYSQL -------------------------------
#apt-get install mysql-server
# ---------------------- INSTALL NGINX -----------------------------
#apt-get install nginx
#service apache2 restart
#apt-get install libcurl4-gnutls-dev libexpat1-dev gettext libz-dev libssl-dev
#apt-get install git
#apt-get install emacs
#git config --global core.editor emacs
git config --global merge.tool vimdiff
exit 0