我已將我的域 rohanpatra.ga 指向我的服務(wù)器并安裝了 nginx。我目前在服務(wù)器上運(yùn)行兩個(gè)域,rohanpatra.ga 和 meetsecured.tk。MeetSecured 是一個(gè)基于 Jitsi Meet 的區(qū)塊鏈視頻會(huì)議平臺(tái),目前運(yùn)行良好。但是,當(dāng)我訪問 rohanpatra.ga 時(shí),它只會(huì)轉(zhuǎn)到默認(rèn)的 nginx 頁面。我已經(jīng)創(chuàng)建了配置文件:站點(diǎn)可用目錄 配置文件內(nèi)容server { listen 80; listen [::]:80; root /var/www/rohanpatra.ga; index index.php index.html index.htm; server_name your_domain; location / { try_files $uri $uri/ =404; } location ~ \.php$ { include snippets/fastcgi-php.conf; fastcgi_pass unix:/var/run/php/php7.0-fpm.sock; }}并將文件符號(hào)鏈接到 sites-enabled 文件夾:?jiǎn)⒂谜军c(diǎn)的目錄這是站點(diǎn)的根目錄和一個(gè)文件 index.php 的內(nèi)容:/var/www/rohanpatra.ga 目錄索引.php<?php
phpinfo();?>按照要求:root@debian-8gb-hel1-1:~# ps auxww |grep nginx回答root 5874 0.0 0.1 70944 9032 ? Ss May30 0:00 nginx: master process /usr/sbin/nginx -g daemon on; master_process on;www-data 9129 0.0 0.1 71228 9516 ? S 21:52 0:00 nginx: worker processwww-data 9130 0.0 0.0 71228 6344 ? S 21:52 0:00 nginx: worker processwww-data 9131 0.0 0.0 71228 6344 ? S 21:52 0:00 nginx: worker processwww-data 9132 0.0 0.0 71228 6344 ? S 21:52 0:00 nginx: worker processroot 10356 0.0 0.0 6144 888 pts/0 S+ 22:29 0:00 grep nginx
1 回答

GCT1015
TA貢獻(xiàn)1827條經(jīng)驗(yàn) 獲得超4個(gè)贊
根據(jù)Nginx 文檔,您在配置中錯(cuò)誤配置了 server_name 參數(shù)。
正確的配置應(yīng)該是這樣的:
server {
? ? listen 80;
? ? server_name rohanpatra.ga;
? ? root /var/www/rohanpatra.ga;
? ? index index.php index.html index.htm;
? ? location / {
? ? ? ? try_files $uri $uri/ =404;
? ? }
? ? location ~ \.php$ {
? ? ? ? include snippets/fastcgi-php.conf;
? ? ? ? fastcgi_pass unix:/var/run/php/php7.0-fpm.sock;
? ? }
}
并確保此 FQDNrohanpatra.ga在服務(wù)器本身上正確解析。
您可以通過在服務(wù)器控制臺(tái)鍵入:進(jìn)行檢查nslookup rohanpatra.ga。
- 1 回答
- 0 關(guān)注
- 185 瀏覽
添加回答
舉報(bào)
0/150
提交
取消