Cara setting domain di VPS
- Persiapkan domain anda misalnya domainsatu.com.
- Arahkan domain anda dengan pointing A-record atau dengan mengarahkan dengan nameserver
- Silahkan menunggu propagasi dns kurang lebih 1-48jam dari setting diatas
Requirement Di VPS Install lamp:
1. Install mysql
2. Install httpd
3. install php
4. setting Vhost domain
5. yum install php-mysql
6. yum install gd gd-devel php-gd
Cara membuat vHost di VPS centOS1. check package apache[root@xxx ~]# rpm -qa http*
httpd-tools-2.2.15-30.el6.centos.x86_64
httpd-2.2.15-30.el6.centos.x86_64
2. Buat direktori untuk pengaturan domain[root@localhost html]# mkdir -p /var/www/html/domainsatu.com/public_html/
[root@localhost html]# mkdir -p /var/www/html/domaindua.com/public_html/
pastikan direktori tersebut berada di document root.
3. Edit file /etc/httpd/conf/httpd.conf[root@localhost html]# /etc/httpd/conf/httpd.conf
edit baris ini
NameVirtualHost 192.200.200.1:80
kemudian tambahkan baris ini
<VirtualHost 192.200.200.1:80>
ServerAdmin webmaster@domainsatu.com
DocumentRoot /var/www/html/domainsatu.com/public_html
ServerName domainsatu.com
ErrorLog /var/log/httpd/domainsatu.com-error_log
CustomLog /var/log/httpd/domainsatu.com-access_log common
</VirtualHost>
<VirtualHost 192.200.200.1:80>
ServerAdmin webmaster@domaindua.com
DocumentRoot /var/www/html/domaindua.com/public_html
ServerName domaindua.com
ErrorLog /var/log/httpd/domaindua.com-error_log
CustomLog /var/log/httpd/domaindua.com-access_log common
</VirtualHost>
4. Untuk melihat hasilnya kita dapat menambahkan file php pada domainsatu dan domaindua[root@localhost ~]# nano /var/www/html/domainsatu.com/public_html/index.php
<?php
echo “this is domainsatu.com”;
?>
[root@localhost ~]# nano /var/www/html/domaindua.com/public_html/index.php
<?php
echo “this is domaindua.com”;
?>
5. Kemudian restart apache[root@localhost ~]# service httpd restart
Stopping httpd: [ OK ]
Starting httpd: [ OK ]