mirror of
https://github.com/pixelfed/pixelfed.git
synced 2025-02-06 20:00:48 +00:00
Fix #5632
This commit is contained in:
parent
a05524e834
commit
a9c6d64c52
1 changed files with 911 additions and 876 deletions
|
@ -1,19 +1,50 @@
|
|||
@extends('admin.partial.template-full')
|
||||
|
||||
@section('section')
|
||||
<div class="title mb-4">
|
||||
<h3 class="font-weight-bold">Diagnostics</h3>
|
||||
</div>
|
||||
<div class="header bg-primary pb-3 mt-n4">
|
||||
<div class="container-fluid">
|
||||
<div class="header-body">
|
||||
<div class="row align-items-center py-4">
|
||||
<div class="col-12 col-lg-4">
|
||||
<p class="display-1 text-white d-inline-block mb-0">Diagnostics</p>
|
||||
</div>
|
||||
<div class="col-12 col-lg-8 d-flex flex-column flex-md-row pt-3 pt-md-0" style="gap: 10px;">
|
||||
<div class="flex-grow-1">
|
||||
<a
|
||||
class="btn btn-outline-white btn-lg btn-block px-3 mb-0 copy-information"
|
||||
href="#">
|
||||
<i class="far fa-clipboard mr-1"></i>
|
||||
Copy Diagnostics
|
||||
</a>
|
||||
</div>
|
||||
<div class="flex-grow-1">
|
||||
<a
|
||||
class="btn btn-outline-white btn-lg btn-block px-3 mb-0 copy-information"
|
||||
href="#">
|
||||
<i class="far fa-chart-network mr-1"></i>
|
||||
Federation Test
|
||||
</a>
|
||||
</div>
|
||||
<div class="flex-grow-1">
|
||||
|
||||
<a
|
||||
class="btn btn-outline-white btn-lg btn-block px-3 mb-0 copy-information"
|
||||
href="#">
|
||||
<i class="far fa-mobile mr-1"></i>
|
||||
Mobile App Test
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="container-fluid mt-5">
|
||||
<div class="row justify-content-center">
|
||||
<div class="col-12">
|
||||
<div class="pb-3 border-bottom">
|
||||
<p class="font-weight-bold text-muted">
|
||||
Information
|
||||
<span class="small text-primary ml-3 copy-information cursor-pointer text-uppercase font-weight-bold">Copy</span>
|
||||
</p>
|
||||
|
||||
<div class="information">
|
||||
|
||||
|
||||
<ul>
|
||||
<p class="font-weight-bold text-muted">
|
||||
Troubleshooting
|
||||
|
@ -195,7 +226,8 @@
|
|||
<p class="font-weight-bold text-muted">
|
||||
Pixelfed Variables (No Secrets)
|
||||
</p>
|
||||
<table style="width:100%" class="table">
|
||||
<div class="table-responsive">
|
||||
<table class="table">
|
||||
<thead class="bg-light">
|
||||
<tr>
|
||||
<th width="5%" scope="col" class="border-0 text-dark">CONFIG</th>
|
||||
|
@ -623,17 +655,17 @@
|
|||
<tr>
|
||||
<td><span class="badge badge-primary">MAIL</span></td>
|
||||
<td><strong>MAIL_DRIVER</strong></td>
|
||||
<td><span>"{{config_cache('mail.driver')}}"</span></td>
|
||||
<td><span>"{{config_cache('mail.default')}}"</span></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><span class="badge badge-primary">MAIL</span></td>
|
||||
<td><strong>MAIL_HOST</strong></td>
|
||||
<td><span>"{{config_cache('mail.host')}}"</span></td>
|
||||
<td><span>"{{config_cache('mail.mailers.smtp.host')}}"</span></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><span class="badge badge-primary">MAIL</span></td>
|
||||
<td><strong>MAIL_PORT</strong></td>
|
||||
<td><span>"{{config_cache('mail.port')}}"</span></td>
|
||||
<td><span>"{{config_cache('mail.mailers.smtp.port')}}"</span></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><span class="badge badge-primary">MAIL</span></td>
|
||||
|
@ -648,7 +680,7 @@
|
|||
<tr>
|
||||
<td><span class="badge badge-primary">MAIL</span></td>
|
||||
<td><strong>MAIL_ENCRYPTION</strong></td>
|
||||
<td><span>"{{config_cache('mail.encryption')}}"</span></td>
|
||||
<td><span>"{{config_cache('mail.mailers.smtp.encryption')}}"</span></td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
|
@ -865,7 +897,7 @@
|
|||
</table>
|
||||
</div>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div class="pb-3 border-bottom">
|
||||
<div class="form-group mb-0">
|
||||
|
@ -883,6 +915,9 @@
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@endsection
|
||||
|
||||
@push('scripts')
|
||||
|
|
Loading…
Reference in a new issue