From a92eb00da109b3d845837ffa3a871422e506d1ae Mon Sep 17 00:00:00 2001 From: manetta Date: Sun, 14 Jan 2024 11:12:00 +0100 Subject: [PATCH] changing the "shared" symlink into "www" --- make_user_accounts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/make_user_accounts.py b/make_user_accounts.py index aa2837f..363430a 100644 --- a/make_user_accounts.py +++ b/make_user_accounts.py @@ -59,7 +59,7 @@ for username in usernames: if args.addusers: os.system(f"sudo systemctl enable jupyterlab@{username}") os.system(f"sudo systemctl start jupyterlab@{username}") - os.system(f"sudo ln -s /var/www /home/{username}/shared") + os.system(f"sudo ln -s /var/www /home/{username}/www") os.system(f"sudo adduser {username} users") nginx = template_env.get_template("users.nginx.conf")