diff options
Diffstat (limited to 'tool/aio.py')
-rwxr-xr-x | tool/aio.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tool/aio.py b/tool/aio.py index 6defa99..953f852 100755 --- a/tool/aio.py +++ b/tool/aio.py @@ -103,6 +103,11 @@ def download_tools(): def generate_nginx_config(domain: str) -> None: + console.print( + "I have found following var in nginx templates:", style="green") + for var in nginx_var_set: + console.print(var, end=" ", style="magenta") + console.print() if not os.path.exists(nginx_config_dir): os.mkdir(nginx_config_dir) console.print( |