【修改首頁內容】
[root@chaogelinux ~]# vim /var/www/html/index.html
[root@chaogelinux ~]# curl 127.0.0.1
超哥帶你學apache
【修改網頁資源目錄路徑】
1.修改配置檔案如下,兩處修改
2.建立資源目錄,建立html檔案
mkdir -p /www/html/
[root@chaogelinux conf]# cat /www/html/index.html
我是新的首頁,你好兄弟們
3.修改了配置檔案,還得重啟http服務才能生效
4.注意關閉防火牆和selinux,影響實驗
[root@chaogelinux conf]# systemctl stop firewalld
[root@chaogelinux conf]# systemctl disable firewalld
[root@chaogelinux conf]# iptables -f
[root@chaogelinux conf]# setenforce 0 #臨時關閉selinux
[root@chaogelinux conf]# grep -i '^selinux' /etc/selinux/config
selinux=disabled #永久關閉selinux,重啟機器生效
selinuxtype=targeted
5.此時可以訪問新的頁面了
[root@chaogelinux conf]# curl 127.0.0.1
我是新的首頁,你好兄弟們
【修改監聽埠】
訪問效果
[root@chaogelinux ~]# curl 127.0.0.1:85
我是新的首頁,你好兄弟們
apache常用工具類
apache 為我們的開發提供了不少簡化開發的工具集 commons jar 其中我最常用的類推薦如下 list stringutils,用來字串擷取,查詢,替換,陣列拆分,格式化輸出等。fileutils,檔案的讀寫,一行 搞定。filenameutils,檔名 路徑等的獲取,比如副檔名 基本檔名...
apache常用工具類
依賴包 commons lang groupid commons lang artifactid 2.6 version dependency commons io groupid commons io artifactid 2.4 version dependency 判斷集合裡是否包含某個固定值...
apache防止ddos攻擊的幾個有用工具
一 來自的ddos指令碼。這套指令碼的開發初衷就是為了防止ddos攻擊,它週期性執行 比如每隔一秒 每次執行時使用netstat命令記錄下當前的網路連線情況,從記錄的資料中篩選出客戶機的ip並統計出每個客戶ip的連線數,將連線數與設定的閾值相比,如果乙個ip有過多的連線,它將被放入黑名單。放入黑名單...