Tx my friend.
It works.
Hi.
I'm using laragon PHP complete... with Node+Yarn etc... but i don't want to use this node instance, because i have my own installation.
Is there a way to disable or a version of laragon without these stuffs?
@wemersonrv said in How to update node.js version over Laragon-WAMP ?:
Hi.
I'm using Laragon Wamp and need to update to NodeJS to most recent version. What is the procedure to overwrite Laragon's node installation ? Just install recent node.js over it ?
Yes my friend... it works! Thank you
Hi.
I'm using Laragon Wamp and need to update to NodeJS to most recent version. What is the procedure to overwrite Laragon's node installation ? Just install recent node.js over it ?
@Anurag-Makol said in Make Laragon Terminal(cmdr) as VS Code default terminal ?:
Hi,
Use this in your settings.json file in the Settings Area of Visual Studio Code
"terminal.integrated.shell.windows": "D:\LARAGON\bin\git\bin\bash.exe",
In my case instead of using CMDER, I am using Git Bash as it opens in the VSC itself.
Hope it solves your issue.
Works, but not the way i want because i need a terminal integrated with VSCode, and now; after update to Cmder, when i call a terminal VScode jumps to the Cmder window insted using in it's own terminal area.
Hi,
There is a way to integrate cmdr
in VS Code and make it the VS Code default terminal ?
@leokhoa said in Use project outside www folder as subhost.:
@wemersonrv : What is your Laragon's version?
Look like you are using a very old version of Laragon. Thing is a little bit complicated if you use SSL.
Nope.. this is a version i get in Laragon Download page: v3.2.3. This version:
@leokhoa said in Use project outside www folder as subhost.:
@wemersonrv : You can copy a virtual host file in Menu > Apache > sites-enabled then rename the ServerName and DocumentRoot. You also need to remove the
auto.
prefix so Laragon will not update the file.
Let's see if i understood: So i need go to Menu > Apaxe(or nginx) > sites-enabled > dir:sites-enabled and here clone any .conf file and manually change the appointments from c:/laragon/www/SITE... to my new folder right?! Here i understand so far.
So, in nginx, there are the SSL certificates and keys too and in this case i don't know how to do with .cert and .key files... Can i clone any other file and use it in other site ? Or the files will be generated later?
server {
listen 80;
listen 443 ssl;
server_name teste1.home *.teste1.home; # 1 - Here i put the website domains
root "C:/laragon/www/teste1/public/"; # 2 - Here i put the website public root folder
index index.html index.htm index.php;
location / {
try_files $uri $uri/ /index.php$is_args$args;
autoindex on;
}
location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass php_upstream;
#fastcgi_pass unix:/run/php/php7.0-fpm.sock;
}
# Enable SSL
ssl_certificate "C:/laragon/etc/ssl/teste1.home.crt"; # 3 - Here I don't know how to do
ssl_certificate_key "C:/laragon/etc/ssl/teste1.home.key"; # 4 - Here too i don't know
ssl_session_timeout 5m;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_ciphers ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv3:+EXP;
ssl_prefer_server_ciphers on;
charset utf-8;
location = /favicon.ico { access_log off; log_not_found off; }
location = /robots.txt { access_log off; log_not_found off; }
location ~ /\.ht {
deny all;
}
}
Hi.
git version 2.12.2.windows.2
After install the terminal not gives me a git response... so after restart my windows, it works.
Thanks!