I am very new to node, so there may be an easy way around this. Is it possible? This is just a proof of concept program to show some colleagues.
Yes, but leave valet for php only.
https://stackoverflow.com/questions/4779963/how-can-i-access-my-localhost-from-my-android-device
yes, you can create a file in : ~/.valet/Nginx
mydomain.conf
map $sent_http_content_type $expires {
"text/html" epoch;
"text/html; charset=utf-8" epoch;
default off;
}
server {
listen 80; # the port nginx is listening on
server_name mydomain.test; # setup your domain here
gzip on;
gzip_types text/plain application/xml text/css application/javascript;
gzip_min_length 1000;
location / {
expires $expires;
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_read_timeout 1m;
proxy_connect_timeout 1m;
proxy_pass http://127.0.0.1:3000; # set the adress of the Node.js instance here
}
}
and
valet restart
done.
@mattstauffer IMO this can be closed
yes, you can create a file in :
~/.valet/Nginxmydomain.conf
map $sent_http_content_type $expires { "text/html" epoch; "text/html; charset=utf-8" epoch; default off; } server { listen 80; # the port nginx is listening on server_name mydomain.test; # setup your domain here gzip on; gzip_types text/plain application/xml text/css application/javascript; gzip_min_length 1000; location / { expires $expires; proxy_redirect off; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; proxy_read_timeout 1m; proxy_connect_timeout 1m; proxy_pass http://127.0.0.1:3000; # set the adress of the Node.js instance here } }and
valet restartdone.
@DJafari, i want to try your solution but I havent on my mac folder ~/.valet/Nginx
I need create this folder manually?
@webwm a long time back the Valet config directory moved from ~/.valet/ to ~/.config/valet/. You will find your Nginx directory there.
Most helpful comment
yes, you can create a file in :
~/.valet/Nginxmydomain.conf
and
valet restartdone.