Skip to content

Instantly share code, notes, and snippets.

@sujalpatel2209
Created December 17, 2017 09:49
Show Gist options
  • Save sujalpatel2209/0ce6a86f0daa9818fa9ec6cb103419bf to your computer and use it in GitHub Desktop.
Save sujalpatel2209/0ce6a86f0daa9818fa9ec6cb103419bf to your computer and use it in GitHub Desktop.
Nginx Config For laravel with set sub domain
server {
listen 80;
index index.html index.htm index.php;
root /var/www/html/baller;
server_name baller.webmobtech.com;
try_files $uri $uri/ /index.php?q=$uri&$args;
location ~ \.php$ {
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/var/run/php/php7.0-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
location ~* \.(js|jpg|png|css|ttf|woff)$ {
root /var/www/html/baller;
expires 30d;
}
listen 443 ssl; # managed by Certbot
ssl_certificate /etc/letsencrypt/live/baller.webmobtech.com/fullchain.pem; # managed by Certbot
ssl_certificate_key /etc/letsencrypt/live/baller.webmobtech.com/privkey.pem; # managed by Certbot
include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot
if ($scheme != "https") {
return 301 https://$host$request_uri;
} # managed by Certbot
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment