質問編集履歴
4
マークダウン修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -58,7 +58,9 @@
|
|
58
58
|
|
59
59
|
|
60
60
|
|
61
|
+
|
62
|
+
|
61
|
-
```unicorn.rb
|
63
|
+
```config/unicorn.rb
|
62
64
|
|
63
65
|
|
64
66
|
|
3
マークダウン修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -49,6 +49,8 @@
|
|
49
49
|
1: from config/unicorn.rb:8:in `reload’
|
50
50
|
|
51
51
|
/home/ec2-user/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/unicorn-5.4.1/lib/unicorn/configurator.rb:592:in `working_directory’: config_file=config/unicorn.rb would not be accessible in working_directory=/var/www/current/config/unicorn.conf (ArgumentError)
|
52
|
+
|
53
|
+
```
|
52
54
|
|
53
55
|
|
54
56
|
|
2
いらない文章を削除
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,8 +1,6 @@
|
|
1
1
|
### 前提・実現したいこと
|
2
2
|
|
3
3
|
|
4
|
-
|
5
|
-
ここに質問の内容を詳しく書いてください。
|
6
4
|
|
7
5
|
就活終了に伴って停止させていたEC2インスタンスを、転職活動用のポートフォリオ復活のために再起動したらサイトの方が見れなくなりました。
|
8
6
|
|
1
コードを修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -60,39 +60,39 @@
|
|
60
60
|
|
61
61
|
```unicorn.rb
|
62
62
|
|
63
|
-
|
63
|
+
|
64
64
|
|
65
65
|
app_path = File.expand_path('../../../', _FILE_)
|
66
66
|
|
67
|
-
|
67
|
+
|
68
68
|
|
69
69
|
worker_processes 1
|
70
70
|
|
71
|
-
|
71
|
+
|
72
72
|
|
73
73
|
working_directory "#{app_path}/current"
|
74
74
|
|
75
|
-
|
75
|
+
|
76
76
|
|
77
77
|
pid "#{app_path}/shared/tmp/pids/unicorn.pid"
|
78
78
|
|
79
|
-
|
79
|
+
|
80
80
|
|
81
81
|
listen "#{app_path}/shared/tmp/sockets/unicorn.sock"
|
82
82
|
|
83
|
-
|
83
|
+
|
84
84
|
|
85
85
|
stderr_path "#{app_path}/shared/log/unicorn.stderr.log"
|
86
86
|
|
87
|
-
|
87
|
+
|
88
88
|
|
89
89
|
stdout_path "#{app_path}/shared/log/unicorn.stdout.log"
|
90
90
|
|
91
|
-
|
91
|
+
|
92
92
|
|
93
93
|
timeout 60
|
94
94
|
|
95
|
-
|
95
|
+
|
96
96
|
|
97
97
|
preload_app true
|
98
98
|
|