質問編集履歴

1

nginxのdefault.confが原因なのでその部分を追記した

2021/01/25 09:01

投稿

mamoth810
mamoth810

スコア8

test CHANGED
File without changes
test CHANGED
@@ -46,6 +46,68 @@
46
46
 
47
47
 
48
48
 
49
- これだけの簡単なルーティングですらNOT FOUND 404エラーとなってしまいます。
50
49
 
50
+
51
+
52
+
53
+ 追記
54
+
55
+
56
+
57
+ ドキュメントルートを修正しました。
58
+
51
- 基本的のですが、なぜかできません。よろくお願します。
59
+ dockerにてnginxを起動するために設定るファイルです。
60
+
61
+
62
+
63
+ default.conf
64
+
65
+ ```ここに言語を入力
66
+
67
+ server {
68
+
69
+ listen 80;
70
+
71
+ index index.php index.html;
72
+
73
+ root /var/www/project/resources;
74
+
75
+
76
+
77
+ location / {
78
+
79
+ try_files $uri $uri/ /index.php?$query_string;
80
+
81
+ }
82
+
83
+
84
+
85
+ location ~ .php$ {
86
+
87
+
88
+
89
+ try_files $uri =404;
90
+
91
+ fastcgi_split_path_info ^(.+.php)(/.+)$;
92
+
93
+ fastcgi_pass php:9000;
94
+
95
+ fastcgi_index index.php;
96
+
97
+ include fastcgi_params;
98
+
99
+ fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
100
+
101
+ fastcgi_param PATH_INFO $fastcgi_path_info;
102
+
103
+ }
104
+
105
+ }
106
+
107
+
108
+
109
+ ```
110
+
111
+
112
+
113
+ この結果、403が表示されるようになりました。