輕鬆搭建HTTP檔案伺服器 Centos7

2021-10-05 14:47:23 字數 1864 閱讀 5865

yum -y install httpd
配置檔案預設位於: /etc/httpd/conf 和/etc/httpd/conf.d

documentroot 預設位於 /var/www/html。

檢視httpd版本

修改/etc/httpd/conf.d/welcome.conf

原: options -indexes

改: options +indexes

重啟httpd

#修改/etc/httpd/conf.d/autoindex.conf,修改為如下配置

#indexoptions fancyindexing htmltable versionsort

indexoptions fancyindexing htmltable versionsort foldersfirst charset=utf-

8 namewidth=

* xhtml

重啟httpd

systemctl restart httpd
chkconfig httpd on
訪問時遇到如下現象,可能是selinux的設定有問題。

...

enabled 開啟狀態

disabled 關閉狀態

此方法修改後需重啟修改/etc/sysconfig/selinux

原:selinux=enforcing

改:selinux=disabled

不想重啟可選擇臨時關閉selinux

setenforce 0
ps:

setenforce 1 設定selinux成為enforcing模式

setenforce 0 設定selinux成為permissive模式

檔案伺服器搭建 如何搭建檔案伺服器?

1.前2期我發了一期檔案伺服器的好處,那麼這期我就講解下如何搭建檔案伺服器,來方便我們的日常辦公。接下來我們來講解下檔案伺服器構造。如下圖,基本有光貓 交換機 伺服器 普通辦公電腦幾個部分組成。如果你是個新廠地,從無到有,這個時候要提前做好規劃,了解場地的布局,根據實際情況畫出網路拓撲圖,然後再進行...

ftp檔案伺服器搭建

查詢系統是否已經開啟ftp服務 rpm q vsftpd安裝vsftpd yum y install vsftpd y表示不用輸入確定,直接一路安裝到底設定開機啟動ftp systemctl enable vsftpd啟動ftp systemctl start vsftpd.service檢視ftp...

samba檔案伺服器搭建

samba是linux系統上的一種檔案共享協議,可以實現windows系統訪問linux系統上的共享資源。我平時更喜歡用共享資料夾來實現windows和ubuntu的共享,samba作為備選。sudo apt get update sudo apt get install samba samba c...