cwp 安裝
1. 下載 cwp?
Download CentOS 7.x – 64bit (minimal) (recommended)
http://isoredirect.centos.org/centos/7/isos/x86_64/
2. 安裝前準(zhǔn)備
yum -y install wget
yum -y update
reboot
3. 安裝 cwp,官方源下載 mariadb 有點(diǎn)慢杉畜,可以更換源
cd /usr/local/src
wget http://centos-webpanel.com/cwp-el7-latest
If download link doesn’t work then you can use the following:CentOS 7: http://dl1.centos-webpanel.com/files/cwp-el7-latest
sh cwp-el7-latest
reboot
5. 配置 cwp, 首先要?jiǎng)?chuàng)建個(gè) User
創(chuàng)建完之后软免,服務(wù)器上會(huì)在 /home 下創(chuàng)建一個(gè)以用戶名字命名的文件夾叭莫,下面會(huì)有個(gè) public_html 文件夾(/home/xxx/public_html)峰髓,基本相當(dāng)于 www 的作用赴精。
apache 配置
1. 將下載好的 wordpress 放在這個(gè)文件夾下面卤妒,解壓安裝(具體步驟略)
2. apache 配置
錯(cuò)誤日志位置:/var/log/httpd/*
httpd.conf:
這些模塊需要額外開一下甥绿,其他的話看具體報(bào)錯(cuò)信息再開了
mod_authn_file.so、mod_alias.so则披、mod_rewrite.so共缕、mod_vhost_alias.so、mod_ssl.so
apache 2.4+ <Directory> 里需要添加?Require all denied
這邊還設(shè)置了下 apache 的運(yùn)行權(quán)限
<IfModule unixd module>
User nobody
Group nobody
</IfModule>
vhosts.conf & vhost_ssl.conf:
這個(gè)包括 ssl 在 cwp 里都有配置模板士复,在 Apache vHosts Template 里图谷,直接拷貝過來,替換里面的關(guān)鍵字就可以了
主要注意下 public_html 及子文件夾的權(quán)限阱洪,可以在 User Accounts => Fix Permissions 下設(shè)置便贵,也可以直接在 CentOS 下修改權(quán)限
sudo chown +R xxx:xxx public_html
sudo chown xxx:nobody public_html
certbot 使用
1. 安裝 certbot
錯(cuò)誤:
ImportError: No module named 'requests.packages.urllib3'
可能 requests 沒有安裝成功
pip uninstall requests 需要執(zhí)行兩遍
pip install requests
錯(cuò)誤:
ImportError: 'pyOpenSSL' module missing required functionality. Try upgrading to v0.14 or newer.
sudo pip install pyOpenSSL==0.14.0
2. 設(shè)置 ssl
修改?/usr/local/apache/conf.d/vhosts-ssl.conf
SSLEngine on
SSLCipherSuite ALL:!ADH:+HIGH:+MEDIUM:-LOW:-SSLv2:-EXP
SSLProtocol All -SSLv2 -SSLv3
SSLCertificateFile /etc/letsencrypt/live/www.xxx.com/cert.pem
SSLCertificateKeyFile /etc/letsencrypt/live/www.xxx.com/privkey.pem
SSLCertificateChainFile /etc/letsencrypt/live/www.xxx.com/chain.pem
SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown
3. 自動(dòng)更新
還有些問題想不起來了,想起來再補(bǔ)充