質問編集履歴
4
追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -88,6 +88,14 @@
|
|
88
88
|
|
89
89
|
|
90
90
|
|
91
|
+
app_root = File.expand_path("../..", __FILE__)
|
92
|
+
|
93
|
+
bind "unix://#{app_root}/tmp/sockets/puma.sock"
|
94
|
+
|
95
|
+
|
96
|
+
|
97
|
+
|
98
|
+
|
91
99
|
# Specifies the number of `workers` to boot in clustered mode.
|
92
100
|
|
93
101
|
# Workers are forked webserver processes. If using threads and workers together
|
@@ -141,3 +149,123 @@
|
|
141
149
|
* Closing connection 0
|
142
150
|
|
143
151
|
curl: (7) Failed to connect to localhost port 3000: 接続を拒否されました
|
152
|
+
|
153
|
+
###nginx.conf
|
154
|
+
|
155
|
+
```
|
156
|
+
|
157
|
+
user appusr;
|
158
|
+
|
159
|
+
worker_processes 1;
|
160
|
+
|
161
|
+
|
162
|
+
|
163
|
+
error_log /var/log/nginx/error.log;
|
164
|
+
|
165
|
+
pid /var/run/nginx.pid;
|
166
|
+
|
167
|
+
|
168
|
+
|
169
|
+
events {
|
170
|
+
|
171
|
+
worker_connections 1024;
|
172
|
+
|
173
|
+
}
|
174
|
+
|
175
|
+
|
176
|
+
|
177
|
+
http {
|
178
|
+
|
179
|
+
upstream backend {
|
180
|
+
|
181
|
+
server unix:/home/kkawahara/workspace/working/webex/tmp/sockets/puma.sock max_fails=3 fail_timeout=10s;
|
182
|
+
|
183
|
+
keepalive 15;
|
184
|
+
|
185
|
+
}
|
186
|
+
|
187
|
+
|
188
|
+
|
189
|
+
include /etc/nginx/mime.types;
|
190
|
+
|
191
|
+
default_type application/octet-stream;
|
192
|
+
|
193
|
+
|
194
|
+
|
195
|
+
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
|
196
|
+
|
197
|
+
'$status $body_bytes_sent "$http_referer" '
|
198
|
+
|
199
|
+
'"$http_user_agent" "$http_x_forwarded_for"';
|
200
|
+
|
201
|
+
|
202
|
+
|
203
|
+
access_log /var/log/nginx/access.log main;
|
204
|
+
|
205
|
+
sendfile on;
|
206
|
+
|
207
|
+
#tcp_nopush on;
|
208
|
+
|
209
|
+
|
210
|
+
|
211
|
+
#keepalive_timeout 0;
|
212
|
+
|
213
|
+
keepalive_timeout 65;
|
214
|
+
|
215
|
+
|
216
|
+
|
217
|
+
include /etc/nginx/conf.d/*.conf;
|
218
|
+
|
219
|
+
|
220
|
+
|
221
|
+
index index.html index.htm;
|
222
|
+
|
223
|
+
|
224
|
+
|
225
|
+
server {
|
226
|
+
|
227
|
+
listen 80;
|
228
|
+
|
229
|
+
server_name localhost;
|
230
|
+
|
231
|
+
root /usr/share/nginx/html;
|
232
|
+
|
233
|
+
|
234
|
+
|
235
|
+
location / {
|
236
|
+
|
237
|
+
}
|
238
|
+
|
239
|
+
error_page 404 /404.html;
|
240
|
+
|
241
|
+
location = /40x.html {
|
242
|
+
|
243
|
+
}
|
244
|
+
|
245
|
+
|
246
|
+
|
247
|
+
error_page 500 502 503 504 /50x.html;
|
248
|
+
|
249
|
+
location = /50x.html {
|
250
|
+
|
251
|
+
}
|
252
|
+
|
253
|
+
|
254
|
+
|
255
|
+
location ~ .php$ {
|
256
|
+
|
257
|
+
proxy_pass http://backend;
|
258
|
+
|
259
|
+
}
|
260
|
+
|
261
|
+
|
262
|
+
|
263
|
+
}
|
264
|
+
|
265
|
+
}
|
266
|
+
|
267
|
+
|
268
|
+
|
269
|
+
|
270
|
+
|
271
|
+
```
|
3
追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -123,3 +123,21 @@
|
|
123
123
|
plugin :tmp_restart
|
124
124
|
|
125
125
|
```
|
126
|
+
|
127
|
+
|
128
|
+
|
129
|
+
試したこと
|
130
|
+
|
131
|
+
$ sudo curl -v http://localhost:3000/
|
132
|
+
|
133
|
+
* Trying 127.0.0.1...
|
134
|
+
|
135
|
+
* TCP_NODELAY set
|
136
|
+
|
137
|
+
* connect to 127.0.0.1 port 3000 failed: 接続を拒否されました
|
138
|
+
|
139
|
+
* Failed to connect to localhost port 3000: 接続を拒否されました
|
140
|
+
|
141
|
+
* Closing connection 0
|
142
|
+
|
143
|
+
curl: (7) Failed to connect to localhost port 3000: 接続を拒否されました
|
2
追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -14,7 +14,13 @@
|
|
14
14
|
|
15
15
|
・実行できないと思われる原因
|
16
16
|
|
17
|
-
nginxと接続されていないようでrailsの起動後に
|
17
|
+
nginxと接続されていないようでrailsの起動後にブラウザでwex01.cloud24.jp:3000と打っても応答がなくタイムアウトします。
|
18
|
+
|
19
|
+
rails側は何もログが出ていないです。
|
20
|
+
|
21
|
+
wex01.cloud24.jpだけならnginxの"Welcome nginx..."indexページが表示されます。
|
22
|
+
|
23
|
+
|
18
24
|
|
19
25
|
|
20
26
|
|
1
情報の追記
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
Rails+Puma+Nginxの
|
1
|
+
Rails+Puma+Nginxの接続の仕方がわからない
|
test
CHANGED
@@ -5,6 +5,18 @@
|
|
5
5
|
これをしないとrailsのviewを表示できないので、お力を貸して頂きたいです。
|
6
6
|
|
7
7
|
当方、初心者でして必要事項の記入漏れや受け答えがうまくできないかもしれないですけどよろしくお願い致します。
|
8
|
+
|
9
|
+
|
10
|
+
|
11
|
+
・求める成果
|
12
|
+
|
13
|
+
Railsのviewを表示させたい
|
14
|
+
|
15
|
+
・実行できないと思われる原因
|
16
|
+
|
17
|
+
nginxと接続されていないようでrailsの起動後にURLを打っても反応がありません
|
18
|
+
|
19
|
+
|
8
20
|
|
9
21
|
|
10
22
|
|