blog #7

Open
cronekorkn wants to merge 2 commits from blog into master
4 changed files with 41 additions and 0 deletions

0
bundles/blog/README.md Normal file
View file

0
bundles/blog/items.py Normal file
View file

35
bundles/blog/metadata.py Normal file
View file

@ -0,0 +1,35 @@
from ipaddress import ip_interface
defaults = {
'flask': {
'blog' : {
'git_url': "https://git.sublimity.de/cronekorkn/flask-blog.git",
'port': 5010,
'app_module': 'blog',
'env': {
'DATA_PATH': '/var/blog',
},
},
},
'users': {
'blog': {},
},
}
@metadata_reactor.provides(
'nginx/vhosts',
)
def nginx(metadata):
return {
'nginx': {
'vhosts': {
metadata.get('blog/hostname'): {
'content': 'nginx/proxy_pass.conf',
'context': {
'target': 'http://127.0.0.1:5010',
},
},
},
},
}

View file

@ -19,6 +19,8 @@
'steam',
'wireguard',
'zfs',
'blog',
'flask',
],
'metadata': {
'id': 'ea29bdf0-0b47-4bf4-8346-67d60c9dc4ae',
@ -35,6 +37,10 @@
'gateway6': 'fe80::1',
}
},
'blog': {
'hostname': 'wiegand.tel',
'repo': 'https://git.sublimity.de/cronekorkn/blog.git',
},
'bind': {
'hostname': 'resolver.name',
'acme_zone': 'acme.sublimity.de',