{{-- Copyright (c) 2015 - 2016 Dane Everitt --}} {{-- Permission is hereby granted, free of charge, to any person obtaining a copy --}} {{-- of this software and associated documentation files (the "Software"), to deal --}} {{-- in the Software without restriction, including without limitation the rights --}} {{-- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell --}} {{-- copies of the Software, and to permit persons to whom the Software is --}} {{-- furnished to do so, subject to the following conditions: --}} {{-- The above copyright notice and this permission notice shall be included in all --}} {{-- copies or substantial portions of the Software. --}} {{-- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR --}} {{-- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, --}} {{-- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE --}} {{-- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER --}} {{-- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, --}} {{-- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE --}} {{-- SOFTWARE. --}} @extends('layouts.master') @section('title') Server Settings @endsection @section('content')

Server Settings


@can('view-sftp', $server)
@can('reset-sftp', $server)

Passwords must meet the following requirements: at least one uppercase character, one lowercase character, one digit, and be at least 8 characters in length. Click here to generate one to use.

{!! csrf_field() !!}
@endcan
@endcan @can('view-startup', $server)
{{ $service->executable }}
@can('edit-startup', $server)
@foreach($variables as $item)
user_editable === 1) name="{{ $item->env_variable }}" @else readonly="readonly" @endif class="form-control" value="{{ old($item->env_variable, $item->a_serverValue) }}" data-action="matchRegex" data-regex="{{ $item->regex }}" />

{{ $item->description }}
Regex: {{ $item->regex }}
Access as: {{{{$item->env_variable}}}}

@endforeach
{!! csrf_field() !!}
@endcan
@endcan @can('view-databases', $server)
@if(count($databases) > 0) @foreach($databases as $database) @endforeach
Database Username Password DB Server
{{ $database->database }} {{ $database->username }} {{ Crypt::decrypt($database->password) }} {{ $database->a_host }}:{{ $database->a_port }}
@else
There are no databases configured for this server. @if(Auth::user()->root_admin === 1) Add a new database. @endif
@endif
@endcan
@endsection