hmm, why
This commit is contained in:
		@@ -30,6 +30,6 @@ class AppServiceProvider extends ServiceProvider
 | 
			
		||||
                ])->baseUrl($api_url);
 | 
			
		||||
            }
 | 
			
		||||
        });
 | 
			
		||||
        Config::set('realtime.port', \App\Models\InstanceSettings::realtimePort());
 | 
			
		||||
        Config::set('coolify.realtime_port', \App\Models\InstanceSettings::realtimePort());
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
@@ -2,6 +2,7 @@
 | 
			
		||||
 | 
			
		||||
return [
 | 
			
		||||
    'docs' => 'https://coolify.io/docs/contact',
 | 
			
		||||
    'realtime_port' => "6001",
 | 
			
		||||
    'self_hosted' => env('SELF_HOSTED', true),
 | 
			
		||||
    'waitlist' => env('WAITLIST', false),
 | 
			
		||||
    'license_url' => 'https://licenses.coollabs.io',
 | 
			
		||||
 
 | 
			
		||||
@@ -52,8 +52,8 @@
 | 
			
		||||
                cluster: "{{ env('PUSHER_HOST') }}" || window.location.hostname,
 | 
			
		||||
                key: "{{ env('PUSHER_APP_KEY') }}" || 'coolify',
 | 
			
		||||
                wsHost: "{{ env('PUSHER_HOST') }}" || window.location.hostname,
 | 
			
		||||
                wsPort: "{{ config('realtime.port') }}",
 | 
			
		||||
                wssPort: "{{ config('realtime.port') }}",
 | 
			
		||||
                wsPort: "{{ config('coolify.realtime_port') }}",
 | 
			
		||||
                wssPort: "{{ config('coolify.realtime_port') }}",
 | 
			
		||||
                forceTLS: false,
 | 
			
		||||
                encrypted: true,
 | 
			
		||||
                enableStats: false,
 | 
			
		||||
 
 | 
			
		||||
@@ -3,7 +3,7 @@
 | 
			
		||||
        <span x-data x-init="$wire.emit('error', '{{ session('error') }}')" />
 | 
			
		||||
    @endif
 | 
			
		||||
    <h1>Dashboard</h1>
 | 
			
		||||
    Realtime Port: {{ config('realtime.port') ?? 'Not set' }}
 | 
			
		||||
    Realtime Port: {{ config('coolify.realtime_port') ?? 'Not set' }}
 | 
			
		||||
 | 
			
		||||
    <div class="subtitle">Your self-hosted environment</div>
 | 
			
		||||
    @if (request()->query->get('success'))
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user