mirror of
https://github.com/YunoHost/moulinette.git
synced 2024-09-03 20:06:31 +02:00
Update yunohost_app.py
This commit is contained in:
parent
3d9d706822
commit
60b7c7668f
1 changed files with 3 additions and 4 deletions
|
@ -316,10 +316,9 @@ def app_install(app, domain, path='/', label=None, mode='private'):
|
|||
# Apache #
|
||||
##########
|
||||
|
||||
a2_conf_lines = [
|
||||
'Alias '+ path +' '+ app_final_path + manifest['launch_path'],
|
||||
'Alias '+ path[:len(path)-1] +' '+ app_final_path + manifest['launch_path']
|
||||
]
|
||||
a2_conf_lines = [ 'Alias '+ path +' '+ app_final_path + manifest['launch_path'] ]
|
||||
if path != '/':
|
||||
a2_conf_lines.append('Alias '+ path[:len(path)-1] +' '+ app_final_path + manifest['launch_path'])
|
||||
|
||||
if lvl(manifest, 'yunohost', 'webapp', 'language') and manifest['yunohost']['webapp']['language'] == 'php':
|
||||
for line in open(a2_template_path +'/php.conf'): a2_conf_lines.append(line.rstrip())
|
||||
|
|
Loading…
Add table
Reference in a new issue