Class: QgsServerSettings

class qgis.server.QgsServerSettings

Bases: sip.wrapper

Provides a way to retrieve settings by prioritizing according to environment variables, ini file and default values.

New in version 3.0.

QgsServerSettings() Constructor.

QgsServerSettings(QgsServerSettings)

Methods

apiResourcesDirectory

Returns the server-wide base directory where HTML templates and static assets (e.g.

apiWfs3MaxLimit

Returns the server-wide maximum allowed value for "limit" in a features request.

cacheDirectory

Returns the cache directory.

cacheSize

Returns the cache size.

getPrintDisabled

Returns True if WMS GetPrint request is disabled and the project's reading flag QgsProject.ReadFlag.FlagDontLoadLayouts is activated.

ignoreBadLayers

Returns True if the bad layers are ignored and False when the presence of a bad layers invalidates the whole project making it unavailable.

iniFile

Returns the ini file loaded by QSetting.

landingPageBaseUrlPrefix

Returns the landing page base URL regular expression, defaults to /.

landingPageProjectsDirectories

Returns the directories used by the landing page service to find .qgs and .qgz projects.

landingPageProjectsPgConnections

Returns the PostgreSQL connection strings used by the landing page service to find projects.

load

Load settings according to current environment variables.

logFile

Returns the log file.

logLevel

Returns the log level.

logProfile

Returns True if profile information has to be added to the logs, default value is False.

logStderr

Returns whether logging to stderr is activated.

logSummary

Log a summary of settings currently loaded.

maxThreads

Returns the maximum number of threads to use.

name

Returns the string representation of a setting.

overrideSystemLocale

Overrides system locale

parallelRendering

Returns parallel rendering setting.

projectFile

Returns the QGS project file to use.

serviceUrl

Returns the service URL from the setting.

showGroupSeparator

Show group (thousand) separator

trustLayerMetadata

Returns True if the reading flag trust layer metadata is activated.

wmsMaxHeight

Returns the server-wide max height of a WMS GetMap request.

wmsMaxWidth

Returns the server-wide max width of a WMS GetMap request.

apiResourcesDirectory(self) str

Returns the server-wide base directory where HTML templates and static assets (e.g. images, js and css files) are searched for.

The default path is calculated by joining QgsApplication.pkgDataPath() with “resources/server/api”, this path can be changed by setting the environment variable QGIS_SERVER_API_RESOURCES_DIRECTORY.

New in version 3.10.

Return type:

str

apiWfs3MaxLimit(self) int

Returns the server-wide maximum allowed value for "limit" in a features request.

The default value is 10000, this value can be changed by setting the environment variable QGIS_SERVER_API_WFS3_MAX_LIMIT.

New in version 3.10.

Return type:

int

cacheDirectory(self) str

Returns the cache directory.

Return type:

str

Returns:

the directory.

cacheSize(self) int

Returns the cache size.

Return type:

int

Returns:

the cache size.

getPrintDisabled(self) bool

Returns True if WMS GetPrint request is disabled and the project’s reading flag QgsProject.ReadFlag.FlagDontLoadLayouts is activated.

The default value is False, this value can be changed by setting the environment variable QGIS_SERVER_DISABLE_GETPRINT.

New in version 3.16.

Return type:

bool

ignoreBadLayers(self) bool

Returns True if the bad layers are ignored and False when the presence of a bad layers invalidates the whole project making it unavailable.

The default value is True, this value can be changed by setting the environment variable QGIS_SERVER_IGNORE_BAD_LAYERS.

New in version 3.10.5.

Return type:

bool

iniFile(self) str

Returns the ini file loaded by QSetting.

Return type:

str

Returns:

the path of the ini file or an empty string if none is loaded.

landingPageBaseUrlPrefix(self) str

Returns the landing page base URL regular expression, defaults to /.

New in version 3.20.

Return type:

str

landingPageProjectsDirectories(self) str

Returns the directories used by the landing page service to find .qgs and .qgz projects. Multiple directories can be specified by separating them with ‘||’.

New in version 3.16.

Return type:

str

landingPageProjectsPgConnections(self) str

Returns the PostgreSQL connection strings used by the landing page service to find projects. Multiple connections can be specified by separating them with ‘||’.

New in version 3.16.

Return type:

str

load(self)

Load settings according to current environment variables.

load(self, envVarName: str) -> bool Load setting for a specific environment variable name.

Returns:

True if loading is successful, False in case of an invalid name.

logFile(self) str

Returns the log file.

Return type:

str

Returns:

the path of the log file or an empty string if none is defined.

logLevel(self) Qgis.MessageLevel

Returns the log level.

Return type:

Qgis.MessageLevel

Returns:

the log level.

logProfile(self) bool

Returns True if profile information has to be added to the logs, default value is False.

Note

this flag is only effective when logLevel() returns Qgis.MessageLevel.Info (0)

See also

logLevel()

New in version 3.18.

Return type:

bool

logStderr(self) bool

Returns whether logging to stderr is activated.

Return type:

bool

Returns:

True if logging to stderr is activated, False otherwise.

New in version 3.4.

logSummary(self)

Log a summary of settings currently loaded.

maxThreads(self) int

Returns the maximum number of threads to use.

Return type:

int

Returns:

the number of threads.

name(env: QgsServerSettingsEnv.EnvVar) str

Returns the string representation of a setting.

New in version 3.16.

Parameters:

env (QgsServerSettingsEnv.EnvVar) –

Return type:

str

overrideSystemLocale(self) str

Overrides system locale

Return type:

str

Returns:

the optional override for system locale.

New in version 3.8.

parallelRendering(self) bool

Returns parallel rendering setting.

Return type:

bool

Returns:

True if parallel rendering is activated, False otherwise.

projectFile(self) str

Returns the QGS project file to use.

Return type:

str

Returns:

the path of the QGS project or an empty string if none is defined.

serviceUrl(self, service: str) str

Returns the service URL from the setting.

New in version 3.20.

Parameters:

service (str) –

Return type:

str

showGroupSeparator(self) bool

Show group (thousand) separator

Return type:

bool

Returns:

if group separator must be shown, default to False.

New in version 3.8.

trustLayerMetadata(self) bool

Returns True if the reading flag trust layer metadata is activated.

The default value is False, this value can be changed by setting the environment variable QGIS_SERVER_TRUST_LAYER_METADATA.

New in version 3.16.

Return type:

bool

wmsMaxHeight(self) int

Returns the server-wide max height of a WMS GetMap request. The lower one of this and the project configuration is used.

Return type:

int

Returns:

the max height of a WMS GetMap request.

New in version 3.6.2.

wmsMaxWidth(self) int

Returns the server-wide max width of a WMS GetMap request. The lower one of this and the project configuration is used.

Return type:

int

Returns:

the max width of a WMS GetMap request.

New in version 3.6.2.