mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-20 23:54:44 +02:00
These don’t work
This commit is contained in:
parent
ad8d087fd9
commit
0925e141b4
@ -44,7 +44,6 @@ class InfoCommand extends Command
|
|||||||
['Session Driver', config('session.driver')],
|
['Session Driver', config('session.driver')],
|
||||||
['Filesystem Driver', config('filesystems.default')],
|
['Filesystem Driver', config('filesystems.default')],
|
||||||
['Default Theme', config('themes.active')],
|
['Default Theme', config('themes.active')],
|
||||||
['Proxies', config('trustedproxies.proxies')],
|
|
||||||
], 'compact');
|
], 'compact');
|
||||||
|
|
||||||
$this->output->title('Database Configuration');
|
$this->output->title('Database Configuration');
|
||||||
|
@ -1,28 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
return [
|
|
||||||
/*
|
|
||||||
* Set trusted proxy IP addresses.
|
|
||||||
*
|
|
||||||
* Both IPv4 and IPv6 addresses are
|
|
||||||
* supported, along with CIDR notation.
|
|
||||||
*
|
|
||||||
* The "*" character is syntactic sugar
|
|
||||||
* within TrustedProxy to trust any proxy
|
|
||||||
* that connects directly to your server,
|
|
||||||
* a requirement when you cannot know the address
|
|
||||||
* of your proxy (e.g. if using Rackspace balancers).
|
|
||||||
*
|
|
||||||
* The "**" character is syntactic sugar within
|
|
||||||
* TrustedProxy to trust not just any proxy that
|
|
||||||
* connects directly to your server, but also
|
|
||||||
* proxies that connect to those proxies, and all
|
|
||||||
* the way back until you reach the original source
|
|
||||||
* IP. It will mean that $request->getClientIp()
|
|
||||||
* always gets the originating client IP, no matter
|
|
||||||
* how many proxies that client's request has
|
|
||||||
* subsequently passed through.
|
|
||||||
*/
|
|
||||||
'proxies' => in_array(env('TRUSTED_PROXIES', []), ['*', '**']) ?
|
|
||||||
env('TRUSTED_PROXIES') : explode(',', env('TRUSTED_PROXIES') ?? ''),
|
|
||||||
];
|
|
19
shell.nix
19
shell.nix
@ -1,19 +0,0 @@
|
|||||||
{
|
|
||||||
composer ? null,
|
|
||||||
php81WithExtensions ? null,
|
|
||||||
pkgs ? import <nixpkgs> {},
|
|
||||||
}:
|
|
||||||
with pkgs;
|
|
||||||
mkShell rec {
|
|
||||||
buildInputs = [
|
|
||||||
alejandra
|
|
||||||
composer
|
|
||||||
nodejs_18
|
|
||||||
nodePackages.yarn
|
|
||||||
php81WithExtensions
|
|
||||||
];
|
|
||||||
|
|
||||||
shellHook = ''
|
|
||||||
PATH="$PATH:${pkgs.docker-compose}/libexec/docker/cli-plugins"
|
|
||||||
'';
|
|
||||||
}
|
|
Loading…
x
Reference in New Issue
Block a user