|  | @@ 175-177 (lines=3) @@ | 
                                                            
                                    | 172 |  |                 $config = Yaml::parse(file_get_contents($config_file)); | 
                                                            
                                    | 173 |  |  | 
                                                            
                                    | 174 |  |                 $allowHost = $config['admin_allow_host']; | 
                                                            
                                    | 175 |  |                 if (count($allowHost) > 0) { | 
                                                            
                                    | 176 |  |                     $sessionData['admin_allow_hosts'] = Str::convertLineFeed(implode("\n", $allowHost)); | 
                                                            
                                    | 177 |  |                 } | 
                                                            
                                    | 178 |  |                 $sessionData['admin_force_ssl'] = (bool) $config['force_ssl']; | 
                                                            
                                    | 179 |  |  | 
                                                            
                                    | 180 |  |                 // ロードバランサー、プロキシサーバ設定 | 
                                                                                
                                |  | @@ 183-185 (lines=3) @@ | 
                                                            
                                    | 180 |  |                 // ロードバランサー、プロキシサーバ設定 | 
                                                            
                                    | 181 |  |                 $sessionData['trusted_proxies_connection_only'] = (bool)$config['trusted_proxies_connection_only']; | 
                                                            
                                    | 182 |  |                 $trustedProxies = $config['trusted_proxies']; | 
                                                            
                                    | 183 |  |                 if (count($trustedProxies) > 0) { | 
                                                            
                                    | 184 |  |                     $sessionData['trusted_proxies'] = Str::convertLineFeed(implode("\n", $trustedProxies)); | 
                                                            
                                    | 185 |  |                 } | 
                                                            
                                    | 186 |  |  | 
                                                            
                                    | 187 |  |                 // メール設定 | 
                                                            
                                    | 188 |  |                 $config_file = $this->config_path . '/mail.yml'; |