icinga-powershell-framework/lib/web/Get-IcingaFrameworkProxyServer.psm1
Lord Hepipud 3d875639e4 Feature Requests: Add Proxy Server support
Also re-arranges web content by using old content from lib/web into lib/webserver, while new lib/web contains the proxy configuration.
Fixes #19
2020-11-19 17:16:33 +01:00

18 lines
524 B
PowerShell

<#
.SYNOPSIS
Fetches the configuration of the configured Proxy server for the Framework, in
case it is set
.DESCRIPTION
etches the configuration of the configured Proxy server for the Framework, in
case it is set
.FUNCTIONALITY
etches the configuration of the configured Proxy server for the Framework, in
case it is set
.LINK
https://github.com/Icinga/icinga-powershell-framework
#>
function Get-IcingaFrameworkProxyServer()
{
return (Get-IcingaPowerShellConfig -Path 'Framework.Proxy.Server');
}