質問編集履歴

4

マークダウン修正

2020/09/15 12:08

投稿

saitou311099
saitou311099

スコア7

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

マークダウン修正

2020/09/15 12:08

投稿

saitou311099
saitou311099

スコア7

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

いらない文章を削除

2020/09/15 12:00

投稿

saitou311099
saitou311099

スコア7

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

コードを修正

2020/09/15 11:59

投稿

saitou311099
saitou311099

スコア7

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
- #Unicornの起動に必要なファイルの設置場所を指定
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
- #Railsアプリケーションの応答を待つ上限時間を設定
91
+
92
92
 
93
93
  timeout 60
94
94
 
95
- #以下は応用的な設定なので説明は割愛
95
+
96
96
 
97
97
  preload_app true
98
98