Hiện nay nhu cầu triển khai một máy chủ Web miễn phí & đáp ứng một số nhu cầu của doanh nghiệp có chi phí vừa phải thì giải pháp sử dụng Apache được nhiều người lựa chọn. Vì vậy trong loạt bài viết này tôi xin hướng dẫn một số Lab triển khai Apache Web Server. Bài viết này được tham khảo từ trang: http://www.server-world.info/en/ & dùng bản CentOS 6.
1) Cài đặt Apache httpd
2) Use Perl Script
3) Use PHP Script
4) Use Ruby Script
5) Enable Userdir
6) Configure SSL
7) Virtual Hostings
8) Basic Auth
9) Basic Auth+PAM
10) Basic Auth+LDAP
11) Kerberos Auth
12) FreeIPA Auth
13) Use WebDAV
14) Enable APC
15) Use PHP-FPM
16) Use SpeedyCGI
17) Enable mod_perl
18) mod_proxy #1
19) mod_proxy #2
20) mod_bw
21) Log analyzer#1
22) Log analyzer#2
23) Log analyzer#3
24) WebMail #1
25) WebMail #2
26) WebMail #3
27) WordPress
28) MediaWiki
29) Piwigo
1) Cài đặt Apache httpd
[1] Cài đặt httpd sử dụng công cụ yum (Các bạn cũng có thể download các gói httpd về & biên dịch)
[root@dtu ~]# yum -y install httpd
# remove welcome page
[root@dtu ~]# rm -f /etc/httpd/conf.d/welcome.conf
# remove default error page
[root@dtu ~]# rm -f /var/www/error/noindex.html
[2] Cấu hình httpd & Thay thế tên máy chủ thành tên của đơn vị các bạn.
[root@dtu ~]# vi /etc/httpd/conf/httpd.conf
# line 44: change
ServerTokens Prod
# line 76: change to ON
KeepAlive On
# line 262: Admin's address
ServerAdmin root@dtu.vn
# line 338: change
AllowOverride All
# line 276: change to your server's name
ServerName dtu.vn:80
# line 402: add file name that it can access only with directory's name
DirectoryIndex index.html index.htm
# line 536: change
ServerSignature Off
# line 759: comment out
#AddDefaultCharset UTF-8
[root@dtu ~]# /etc/rc.d/init.d/httpd start
Starting httpd: [ OK ]
[root@dtu ~]# chkconfig httpd on
[3] Tạo 1 trang HTML test & sử dụng trình duyệt truy cập vào Web Server từ Client để kiểm tra nó đã hoạt động đúng chưa.
[root@dtu ~]# vi /var/www/html/index.html
<html>
<body>
<div style="width: 100%; font-size: 40px; font-weight: bold; text-align: center;">
Test Page
</div>
</body>
</html>
» Tin mới nhất:
» Các tin khác: