File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -567,7 +567,7 @@ def install_desktop_app_in_vm(
567
567
click .echo ("Now, Checking API Status..." )
568
568
ip = get_vm_ip ()
569
569
wait_till_desktop_api_up (ip , api_path_prefix )
570
- click .echo (f"Hurray! your desktop app is up and running. Visit http://{ ip } { api_path_prefix or "/" } to see the API Docs." )
570
+ click .echo (f"Hurray! your desktop app is up and running. Visit http://{ ip } { api_path_prefix or '/' } to see the API Docs." )
571
571
572
572
def delete_installer (default_name ):
573
573
if os .path .exists (default_name ):
@@ -579,8 +579,8 @@ def setup_apache_load_balancer_desktop_app(port, api_path_prefix):
579
579
DocumentRoot /var/www/html
580
580
ErrorLog ${{APACHE_LOG_DIR}}/error.log
581
581
CustomLog ${{APACHE_LOG_DIR}}/access.log combined
582
- ProxyPass { api_path_prefix or "/" } http://127.0.0.1:{ port } { api_path_prefix or "/" }
583
- ProxyPassReverse { api_path_prefix or "/" } http://127.0.0.1:{ port } { api_path_prefix or "/" }
582
+ ProxyPass { api_path_prefix or '/' } http://127.0.0.1:{ port } { api_path_prefix or '/' }
583
+ ProxyPassReverse { api_path_prefix or '/' } http://127.0.0.1:{ port } { api_path_prefix or '/' }
584
584
</VirtualHost>"""
585
585
write_file_sudo (apache_conf , "/etc/apache2/sites-available/000-default.conf" )
586
586
You can’t perform that action at this time.
0 commit comments