www-data node in its folder
This commit is contained in:
parent
0cc3dc535f
commit
4482a9acfc
16
install.sh
16
install.sh
|
@ -192,19 +192,17 @@ read answer
|
||||||
if [[ "$answer" == "y" ]]; then
|
if [[ "$answer" == "y" ]]; then
|
||||||
touch /var/www/.bashrc
|
touch /var/www/.bashrc
|
||||||
chown www-data:www-data /var/www/.bashrc
|
chown www-data:www-data /var/www/.bashrc
|
||||||
mkdir /var/www/.nvm
|
mkdir /var/www/node
|
||||||
chown www-data:www-data /var/www/.nvm
|
chown www-data:www-data /var/www/node
|
||||||
mkdir /var/www/.npm
|
|
||||||
chown www-data:www-data /var/www/.npm
|
|
||||||
|
|
||||||
su -s /bin/bash -c 'curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash &&\
|
su -s /bin/bash -c 'curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash &&\
|
||||||
export NVM_DIR="$HOME/.nvm" &&\
|
export NVM_DIR="$HOME/node/.nvm" &&\
|
||||||
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" &&\
|
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" &&\
|
||||||
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" &&\
|
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" &&\
|
||||||
nvm install v18' www-data
|
nvm install v18' www-data
|
||||||
ln -sf /var/www/.nvm/versions/node/v18.19.1/bin/node /usr/bin/node
|
ln -sf /var/www/node/.nvm/versions/node/v18.19.1/bin/node /usr/bin/node
|
||||||
ln -sf /var/www/.nvm/versions/node/v18.19.1/bin/npm /usr/bin/npm
|
ln -sf /var/www/node/.nvm/versions/node/v18.19.1/bin/npm /usr/bin/npm
|
||||||
ln -sf /var/www/.nvm/versions/node/v18.19.1/bin/npx /usr/bin/npx
|
ln -sf /var/www/node/.nvm/versions/node/v18.19.1/bin/npx /usr/bin/npx
|
||||||
|
|
||||||
echo -e "${PURPLE}${BOLD}Node installed${RESET}";
|
echo -e "${PURPLE}${BOLD}Node installed${RESET}";
|
||||||
fi
|
fi
|
||||||
|
@ -364,7 +362,7 @@ if [[ "$answer" == "y" ]]; then
|
||||||
echo \"URL=https://${domain_name}\" >> .env &&\
|
echo \"URL=https://${domain_name}\" >> .env &&\
|
||||||
echo \"DIRECTUS_URL=https://cms.${domain_name}\" >> .env &&\
|
echo \"DIRECTUS_URL=https://cms.${domain_name}\" >> .env &&\
|
||||||
tmux send-keys -t directus C-c &&\
|
tmux send-keys -t directus C-c &&\
|
||||||
npx nuxi@latest init &&\
|
npm install -y &&\
|
||||||
NUXT_TELEMETRY_DISABLED=1 bash -c \"npm run build\" &&\
|
NUXT_TELEMETRY_DISABLED=1 bash -c \"npm run build\" &&\
|
||||||
tmux new-session -d -s front &&\
|
tmux new-session -d -s front &&\
|
||||||
tmux send-keys -t front \"cd ${front_directory} && node .output/server/index.mjs\" C-m &&\
|
tmux send-keys -t front \"cd ${front_directory} && node .output/server/index.mjs\" C-m &&\
|
||||||
|
|
Loading…
Reference in New Issue