質問編集履歴
2
confファイルを追記。
test
CHANGED
File without changes
|
test
CHANGED
@@ -46,6 +46,24 @@
|
|
46
46
|
|
47
47
|
# }
|
48
48
|
|
49
|
+
|
50
|
+
|
51
|
+
location ~ .php$ {
|
52
|
+
|
53
|
+
root /var/www/html/hoge;
|
54
|
+
|
55
|
+
fastcgi_pass unix:/var/run/php-fpm/php-fpm.sock;
|
56
|
+
|
57
|
+
fastcgi_index login.php;
|
58
|
+
|
59
|
+
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
60
|
+
|
61
|
+
include fastcgi_params;
|
62
|
+
|
63
|
+
fastcgi_read_timeout 1200;
|
64
|
+
|
65
|
+
}
|
66
|
+
|
49
67
|
|
50
68
|
|
51
69
|
}
|
1
ディレクトリ構造などについて追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -51,3 +51,33 @@
|
|
51
51
|
}
|
52
52
|
|
53
53
|
```
|
54
|
+
|
55
|
+
|
56
|
+
|
57
|
+
##[追記]ディレクトリ構造および表示ファイル
|
58
|
+
|
59
|
+
ディレクトリ構造は下記の通りとなっており、アクセスするアドレスとその際に表示したいファイルは下記となっております。
|
60
|
+
|
61
|
+
|
62
|
+
|
63
|
+
```dir
|
64
|
+
|
65
|
+
/var/www/html
|
66
|
+
|
67
|
+
|- /hoge
|
68
|
+
|
69
|
+
|- /index.php
|
70
|
+
|
71
|
+
|
72
|
+
|
73
|
+
|- /fuga
|
74
|
+
|
75
|
+
|- /fuga_index.php
|
76
|
+
|
77
|
+
```
|
78
|
+
|
79
|
+
|
80
|
+
|
81
|
+
アクセス先 : https://aaa.hoge.com/fuga/fuga_index.php
|
82
|
+
|
83
|
+
表示したいファイル : /var/www/html/fuga/fuga_index.php
|