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")