-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
34 lines (29 loc) · 833 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!DOCTYPE html>
<html>
<head>
<title>E-Apotek Online</title>
</head>
<body>
<h4>Petunjuk Konfigurasi :</h4>
<p>silahkan konfigurasi web server untuk pengaturan aplikasi e-apotek online.</p>
<p>anda harus mengubah lokasi directory "DocumentRoot" ke folder <code>public</code> untuk menjalankan aplikasi E-Apotek.</p>
<p>Contoh :<br/>
<pre>
< VirtualHost *:80>
ServerName example.com
ServerAlias www.example.com
ServerAdmin demo@example.com
DocumentRoot <font color="red">/var/www/html/e-apotek/public/</font>
< Directory <font color="red">/var/www/html/e-apotek/public/</font>>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
< /Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
< /VirtualHost>
</pre>
</p>
</body>
</html>