溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

LNMP配置PHP支持HTTPS的方法

發(fā)布時(shí)間:2024-11-06 09:45:17 來(lái)源:億速云 閱讀:81 作者:小樊 欄目:編程語(yǔ)言

LNMP是指Linux、Nginx、MySQL和PHP的組合,用于搭建網(wǎng)站服務(wù)器

  1. 安裝Nginx和PHP-FPM:

    對(duì)于Ubuntu/Debian系統(tǒng),使用以下命令安裝:

    sudo apt-get update
    sudo apt-get install nginx php-fpm
    

    對(duì)于CentOS/RHEL系統(tǒng),使用以下命令安裝:

    sudo yum install epel-release
    sudo yum install nginx php-fpm
    
  2. 配置Nginx支持HTTPS:

    首先,你需要一個(gè)SSL證書(shū)。你可以從Let’s Encrypt免費(fèi)獲取一個(gè)證書(shū)。安裝Certbot工具:

    對(duì)于Ubuntu/Debian系統(tǒng):

    sudo apt-get install certbot python3-certbot-nginx
    

    對(duì)于CentOS/RHEL系統(tǒng):

    sudo yum install certbot python3-certbot-nginx
    

    然后,運(yùn)行Certbot獲取SSL證書(shū):

    sudo certbot --nginx -d yourdomain.com -d www.yourdomain.com
    

    按照提示操作,Certbot會(huì)自動(dòng)修改Nginx配置文件以支持HTTPS。完成后,重啟Nginx:

    sudo systemctl restart nginx
    
  3. 配置PHP-FPM支持HTTPS:

    由于我們已經(jīng)安裝了Nginx和PHP-FPM,現(xiàn)在需要確保PHP-FPM也支持HTTPS。編輯PHP-FPM的配置文件(通常位于/etc/php/版本號(hào)/fpm/pool.d/www.conf),找到以下行:

    listen = 127.0.0.1:9000
    

    將其修改為:

    listen = 0.0.0.0:9000
    

    保存文件并重啟PHP-FPM:

    sudo systemctl restart php版本號(hào)-fpm
    
  4. 配置Nginx處理PHP請(qǐng)求:

    編輯Nginx的默認(rèn)站點(diǎn)配置文件(通常位于/etc/nginx/sites-available/default),找到以下部分:

    location ~ \.php$ {
        include snippets/fastcgi-php.conf;
        fastcgi_pass unix:/var/run/php/php版本號(hào)-fpm.sock;
    }
    

    fastcgi_pass行修改為:

    fastcgi_pass 127.0.0.1:9000;
    

    保存文件并重啟Nginx:

    sudo systemctl restart nginx
    

現(xiàn)在,你的LNMP環(huán)境已經(jīng)配置好了PHP支持HTTPS。你可以通過(guò)訪問(wèn)https://yourdomain.com來(lái)驗(yàn)證配置是否成功。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

php
AI