CentOS8/Nginx
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
&tag(CentOS8/Nginx);
*目次 [#r490b78e]
#contents
*関連ページ [#e72d4cf7]
*参考情報 [#g7e93d6e]
-[[CentOS 8にNginx 1.16をインストール(AppStream) - Qiit...
*インストール [#o0c1b593]
-デフォルトは 1.14?
# dnf install @nginx
-開始して自動起動
#pre{{
# systemctl start nginx
# systemctl enable nginx
}}
*設定 [#i8fa55e6]
**シンプルな設定 [#i2526d37]
-/etc/nginx/nginx.confを編集。
user www-data;
-DocumentRootだけ指定して8080ポートを使用。
-/etc/nginx/conf.d/default.confを作成。
#pre{{
server {
listen 8080;
index index.php;
root /home/sora/public_html;
}}
-8080ポートでfirewalldを通す
firewall-cmd --zone=public --add-port=8080/tcp --permanent
-以下を参考にしてパラメータを調整。[[Nginx/設定 - src256 ...
**phpを動かす [#sd3d3c33]
-[[../PHP]]
*トラブルシューティング [#r69fb1e7]
**個別ページで「FastCGI sent in stderr: "Primary script u...
-nginxの設定ファイルが悪い。以下の定義がないとだめだった。
#pre{{
location /wp2 {
try_files $uri $uri/ /wp2/index.php?$query_string;
}
}}
終了行:
&tag(CentOS8/Nginx);
*目次 [#r490b78e]
#contents
*関連ページ [#e72d4cf7]
*参考情報 [#g7e93d6e]
-[[CentOS 8にNginx 1.16をインストール(AppStream) - Qiit...
*インストール [#o0c1b593]
-デフォルトは 1.14?
# dnf install @nginx
-開始して自動起動
#pre{{
# systemctl start nginx
# systemctl enable nginx
}}
*設定 [#i8fa55e6]
**シンプルな設定 [#i2526d37]
-/etc/nginx/nginx.confを編集。
user www-data;
-DocumentRootだけ指定して8080ポートを使用。
-/etc/nginx/conf.d/default.confを作成。
#pre{{
server {
listen 8080;
index index.php;
root /home/sora/public_html;
}}
-8080ポートでfirewalldを通す
firewall-cmd --zone=public --add-port=8080/tcp --permanent
-以下を参考にしてパラメータを調整。[[Nginx/設定 - src256 ...
**phpを動かす [#sd3d3c33]
-[[../PHP]]
*トラブルシューティング [#r69fb1e7]
**個別ページで「FastCGI sent in stderr: "Primary script u...
-nginxの設定ファイルが悪い。以下の定義がないとだめだった。
#pre{{
location /wp2 {
try_files $uri $uri/ /wp2/index.php?$query_string;
}
}}
ページ名: