-
-
-
-
Remove Required Port?
-
-
-
-
- This service requires port {{ $requiredPort }} to function correctly.
- One or more of your domains are missing a port number.
-
+
+
+
+ - Only one service will be accessible at this domain
+ - The routing behavior will be unpredictable
+ - You may experience service disruptions
+ - SSL certificates might not work correctly
+
+
+
-
-
- - The service may become unreachable
- - The proxy may not be able to route traffic correctly
- - Environment variables may not be generated properly
- - The service may fail to start or function
-
-
+ @if ($showPortWarningModal)
+
+
+
+
+
+
+
Remove Required Port?
+
+
+
+
+ This service requires port {{ $requiredPort }} to function correctly.
+ One or more of your domains are missing a port number.
+
-
-
- Cancel - Keep Port
-
-
- I understand, remove port anyway
-
+
+
+ - The service may become unreachable
+ - The proxy may not be able to route traffic correctly
+ - Environment variables may not be generated properly
+ - The service may fail to start or function
+
+
+
+
+
+ Cancel - Keep Port
+
+
+ I understand, remove port anyway
+
+
-
-
-
+
+
+ @endif
@endif
@elseif ($resourceType === 'database')
@@ -178,6 +184,17 @@ class="w-auto dark:bg-coolgray-200 dark:hover:bg-coolgray-300">
@if ($currentRoute === 'project.service.database.import')
+ @elseif ($currentRoute === 'project.service.index.advanced')
+ Advanced
+
+
+
+
@else
-
Advanced
-
-
-
-
@endif
@endif
diff --git a/routes/web.php b/routes/web.php
index 26863aa17..7ccfb709a 100644
--- a/routes/web.php
+++ b/routes/web.php
@@ -262,6 +262,7 @@
Route::get('/terminal', ExecuteContainerCommand::class)->name('project.service.command')->middleware('can.access.terminal');
Route::get('/{stack_service_uuid}/backups', ServiceDatabaseBackups::class)->name('project.service.database.backups');
Route::get('/{stack_service_uuid}/import', ServiceIndex::class)->name('project.service.database.import')->middleware('can.update.resource');
+ Route::get('/{stack_service_uuid}/advanced', ServiceIndex::class)->name('project.service.index.advanced');
Route::get('/{stack_service_uuid}', ServiceIndex::class)->name('project.service.index');
Route::get('/tasks/{task_uuid}', ScheduledTaskShow::class)->name('project.service.scheduled-tasks');
});