This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |