Add a few more location blocks generators
This commit is contained in:
parent
261e9d9fbb
commit
dc5b9db7ff
1 changed files with 24 additions and 4 deletions
|
@ -2,7 +2,8 @@
|
|||
|
||||
from pathlib import Path
|
||||
|
||||
from nginx.config.api import Section, Location, EmptyBlock, Comment, KeyValueOption, KeyMultiValueOption
|
||||
from nginx.config.api import (Section, Location, EmptyBlock, Comment,
|
||||
KeyValueOption, Block)
|
||||
from nginx.config.helpers import duplicate_options
|
||||
|
||||
PROXY_OPTIONS = [
|
||||
|
@ -75,13 +76,23 @@ class NginxSiteBuilder:
|
|||
return self._config
|
||||
|
||||
def write(self, path: Path):
|
||||
destination = Path / self.filename
|
||||
destination = path / self.filename
|
||||
with destination.open("w") as handle:
|
||||
handle.write(str(self._config))
|
||||
|
||||
def add_logging(self, suffix="nginx_"):
|
||||
def add_upstream(self, name="server", host="127.0.0.1", port=5555):
|
||||
upstream = Block(f"upstream %{name}", server=f"{host}:{port}")
|
||||
upstream.sections.add(self._config)
|
||||
self._config = upstream
|
||||
|
||||
syslog = f"syslog:server=unix:/dev/log,tag={self.domain}_nginx,"
|
||||
def add_logging(self, suffix="nginx"):
|
||||
|
||||
if isinstance(self.domain, list):
|
||||
domain = self.domain[0].replace(".", "_")
|
||||
else:
|
||||
domain = domain.replace(".", "_")
|
||||
|
||||
syslog = f"syslog:server=unix:/dev/log,tag={domain}_{suffix},"
|
||||
access = syslog + "severity=info,nohostname"
|
||||
error = syslog + "severity=error,nohostname"
|
||||
|
||||
|
@ -138,3 +149,12 @@ class NginxSiteBuilder:
|
|||
location.sections.add(duplicate_options("fastcgi_param", FPM_OPTIONS))
|
||||
|
||||
self._config.sections.add(location)
|
||||
|
||||
def add_uwsgi_location(self, location="/", socket=None, auth=False):
|
||||
|
||||
location = Location(location, uwsgi_pass=socket,
|
||||
include="uwsgi_params")
|
||||
if auth:
|
||||
location.sections.add(KeyValueOption("include", "auth.conf"))
|
||||
|
||||
self._config.sections.add(location)
|
||||
|
|
Loading…
Add table
Reference in a new issue