質問編集履歴

1

confファイル内容追加

2019/03/13 05:29

投稿

bullton
bullton

スコア39

test CHANGED
File without changes
test CHANGED
@@ -29,3 +29,91 @@
29
29
 
30
30
 
31
31
  よろしくお願い致します.
32
+
33
+
34
+
35
+ 念のため,現時点での設定ファイル
36
+
37
+ /etc/httpd/conf.d/wsgi.conf
38
+
39
+
40
+
41
+ ```ここに言語を入力
42
+
43
+ LoadModule wsgi_module /home/ec2-user/anaconda3/envs/django/lib/python3.6/site-packages/mod_wsgi/server/mod_wsgi-py36.cpython-36m-x86_64-linux-gnu.so
44
+
45
+ WSGIDaemonProcess chatbot python-home=/home/ec2-user/anaconda3/envs/django python-path=/var/www/cgi-bin/chatbot/chatbot/
46
+
47
+ WSGIProcessGroup chatbot
48
+
49
+ WSGIScriptAlias / /var/www/cgi-bin/chatbot/chatbot/chatbot/wsgi.py
50
+
51
+ WSGIPythonPath /home/ec2-user/anaconda3/envs/django/
52
+
53
+ <Directory /var/www/cgi-bin/chatbot/chatbot/chatbot/>
54
+
55
+ <Files wsgi.py>
56
+
57
+ Require all granted
58
+
59
+ </Files>
60
+
61
+ </Directory>
62
+
63
+ ```
64
+
65
+
66
+
67
+ /etc/httpd/conf/httpd.conf
68
+
69
+ ```ここに言語を入力
70
+
71
+ LoadModule wsgi_module /home/ec2-user/anaconda3/envs/django/lib/python3.6/site-packages/mod_wsgi/server/mod_wsgi-py36.cpython-36m-x86_64-linux-gnu.so
72
+
73
+ WSGIScriptAlias / /var/www/cgi-bin/chatbot/chatbot/chatbot/wsgi.py
74
+
75
+ WSGIPythonHome /home/ec2-user/anaconda3/envs/django/bin/python
76
+
77
+ WSGIPythonPath /var/www/cgi-bin/chatbot/chatbot/chatbot/
78
+
79
+ <Directory /var/www/cgi-bin/chatbot/chatbot/chatbot/>
80
+
81
+ <Files wsgi.py>
82
+
83
+ Require all granted
84
+
85
+ </Files>
86
+
87
+ </Directory>
88
+
89
+ ```
90
+
91
+
92
+
93
+
94
+
95
+ /etc/httpd/conf.d/django.conf
96
+
97
+ ```ここに言語を入力
98
+
99
+ LoadModule wsgi_module /home/ec2-user/anaconda3/envs/django/lib/python3.6/site-packages/mod_wsgi/server/mod_wsgi-py36.cpython-36m-x86_64-linux-gnu.so
100
+
101
+ WSGIScriptAlias / /var/www/cgi-bin/chatbot/chatbot/chatbot/wsgi.py
102
+
103
+ WSGIPythonPath /home/ec2-user/anaconda3/envs/django/
104
+
105
+ WSGIPythonHome "/var/www/cgi-bin/chatbot/chatbot/"
106
+
107
+ <Directory /var/www/cgi-bin/chatbot/chatbot/>
108
+
109
+ <Files wsgi.py>
110
+
111
+ Require all granted
112
+
113
+ </Files>
114
+
115
+ </Directory>
116
+
117
+ ~
118
+
119
+ ```