13 lines
326 B
Python
13 lines
326 B
Python
|
@metadata_processor
|
||
|
def nginx_config(metadata):
|
||
|
return {
|
||
|
'nginx': {
|
||
|
'vhosts': {
|
||
|
metadata['riot-web']['url']: {
|
||
|
'webroot': '/var/www/chat.franzi.business/webapp/',
|
||
|
'extras': True,
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
}, DEFAULTS, DONE
|