Skip to content

Instantly share code, notes, and snippets.

View bbbcube's full-sized avatar
🎯
Focusing

Biswa Bandhu Bhandary bbbcube

🎯
Focusing
  • Evertz India Pvt. Ltd.
  • Asansol, India
  • X @thebcube
View GitHub Profile
@mnshankar
mnshankar / nginx.conf
Last active March 16, 2023 11:17
Nginix config for hosting multiple laravel projects in sibling folders.
server {
listen 80;
root /vagrant;
index index.html index.htm index.php app.php app_dev.php;
# Make site accessible from http://set-ip-address.xip.io
server_name 192.168.33.10.xip.io;
access_log /var/log/nginx/vagrant.com-access.log;
error_log /var/log/nginx/vagrant.com-error.log error;