Skip to content

Instantly share code, notes, and snippets.

View justinobb's full-sized avatar

Justin Patchett justinobb

View GitHub Profile
@justinobb
justinobb / Nginx 1.11.6 OpenSSL 1.1 Centos 7
Created November 16, 2016 12:16
Nginx 1.11.6 OpenSSL 1.1 Centos 7
# Based on CentOS7 fork of @smartmadsoft: https://gist.github.com/moneytoo/ab3f34e4fddc2110675952f8280f49c5
# "6" for CentOS6 or Amazon Linux, "7" for CentOS7
CENTVER="7"
OPENSSL="openssl-1.1.0c"
NGINX="nginx-1.11.6-1"
yum clean all
# Install epel packages (required for GeoIP-devel)
@justinobb
justinobb / laravel-session-problem
Created July 27, 2016 10:41
Laravel 5.2, Laravel 5.3 Session Regenerating New ID on each request, Session ID keeps changing
From your friends at _Origin Broadband_
Since this hasn't been outlined anywhere online yet, a change was made to an environmental change which can
cause the session to constantly be regenerated.
The file in question is app/Providers/RouteServiceProvider.php
You will notice your defaults are:
protected function mapWebRoutes(Router $router)
@justinobb
justinobb / gist:25995796ed1a8aa157b578c999544aa2
Created June 6, 2016 14:02
How to browse the Laravel source code from the API pages
1. Be browsing around the Laravel site looking for clues https://laravel.com/docs/master/
2. Notice that on left hand side menu near the top there's a link that says "API Documentation"
3. Click it
4. The API documentation is ready to browse.
[optional further steps]
5. Search for something you want to investigate the usage of, lets say "Illuminate/Database/Connection" by typing it into the "search" box.
The "search" box is ajax powered and will suggest what you want pretty quickly.
6. Click on the term you wish to view. Your browser will then navigate to the associated page.
7. Click on an anchor you wish to view more details of. For example, I clicked the "__construct" link.