This is the website I built for JREAM LLC several years ago. This remains for a portfolio piece of code. This document is not conclusive. The code was written by me and for me. :-)
- Overview
- Written in Phalcon PHP framework.
- VPS Hosted on Ubuntu LTS Server (Linode).
- PHP 7
- Apache 2
- WebPack for Assets
- SaaS
- Misc Images
- Webpack Mix
- Packages are out of date of course :)
- Ruby Mailcatcher for Testing Emails
- PHP Codeception for Tests
- Python Fabric for Basic Deployment Tasks
- Bash
cli.sh
for Phalcon Basedapp/Tasks
- Developed as a paid SaaS/LMS for courses I recorded.
- Blog Submodule, however
.gitmodules
ofjream/blog
is no longer available. - Features Hosted through AWS:
- Multi A-Z MySQL Database.
- AWS MySQL RDB (Upfront).
- Streaming Video and Images:
- AWS S3 Storage.
- AWS CloudFront for RMTP Streaming.
- 3rd Party Streaming Video Player
- Multi A-Z MySQL Database.
- Paid Members for Full Courses (Stripe API).
- API Keys are Rolled/Not Active:
- Paypal REST API.
- Stripe REST API.
At the time, this was setup using Apache. I'd likely use Nginx now but here's the configuration.
- Make a
.htpasswd
to protect thedev
URL.
cd /etc/apache2/htpasswd
htpasswd -cB dev_jream.htpasswd jesse
- Setup the Apache Config:
<VirtualHost *:80>
ServerName dev.jream.com
ServerAdmin [email protected]
# Notice the /dev/ subfolder
DocumentRoot /var/www/dev/jream.com/public
DirectoryIndex index.php
<Directory /var/www/dev/jream.com/public>
Options Indexes FollowSymLinks
AllowOverride All
#Require all granted
# Path to the generated .htpasswd
AuthUserFile /etc/apache2/htpasswd/dev_jream.htpasswd
AuthType Basic
AuthName "Develop Area"
Require valid-user
Order Allow,Deny
Deny from All
Satisfy Any
</Directory>
</VirtualHost>
- For localhost email testing use mailcatcher with Ruby
gem install mailcatcher
mailcatcher
- Configure PHP settings for Mailcatcher
Mailpath: /usr/bin/sendmail
Protocol: smtp
Host: localhost
Port: 1025
- Go to http://localhost:1080/
- Send mail through smtp://localhost:1025
- From the root folder (Where you can see
/vendor/
) run:
vendor/bin/codecept run
- Make sure the application/cache folder is writable.
- If setting up a
/dev
path it would also be required there.
chown -R www-data:www-data /var/www/jream.com
usermod -a -G www-data jesse
chmod 770 -R /var/www/jream.com
- Get the PayPal credentials from the API.
Paypal Test: [email protected]
To create an .htpasswd for the development environment run sudo htpasswd -c /etc/apache2/.htpasswd <username>
ServerName jream.com
<VirtualHost *:80>
ServerAdmin [email protected]
ServerName jream.com
ServerAlias jream.com www.jream.com
# Indexes + Directory Root.
DirectoryIndex index.php
DocumentRoot /var/www/jream.com/htdocs/public/
# Logfiles
ErrorLog /var/www/logs/error.jream.com.log
CustomLog /var/www/logs/access.jream.com.log combined
</VirtualHost>
<VirtualHost *:80>
ServerAdmin [email protected]
ServerName dev.jream.com
ServerAlias dev.jream.com
# Indexes + Directory Root.
DirectoryIndex index.php
DocumentRoot /var/www/dev.jream.com/htdocs/public
# Protect
<Directory /var/www/dev.jream.com/htdocs/public>
AuthType Basic
AuthName "Restricted Content"
AuthUserFile /etc/apache2/.htpasswd
Require valid-user
</Directory>
# Logfiles
ErrorLog /var/www/logs/error.dev.jream.com.log
CustomLog /var/www/logs/access.dev.jream.com.log combined
</VirtualHost>
<VirtualHost *:443>
ServerAdmin [email protected]
ServerName jream.com
ServerAlias jream.com
# Indexes + Directory Root.
DirectoryIndex index.php
DocumentRoot /var/www/jream.com/htdocs/public/
# Logfiles
ErrorLog /var/www/logs/error.ssl.jream.com.log
CustomLog /var/www/logs/access.ssl.jream.com.log combined
# SSL
SSLEngine on
SSLCertificateFile /etc/apache2/ssl/jream.com/jream_com.crt
SSLCertificateKeyFile /etc/apache2/ssl/jream.com/server.key
SSLCACertificateFile /etc/apache2/ssl/jream.com/jream_com.cer
</VirtualHost>
- Use codeception, which can be symlinked from composer via:
ln -s vendor/bin/codecept .
- If nothing exists, bootstrap it with:
./codecept build
- Create a Test with:
./codecept generate:cept acceptance Welcome
- Then you'd write a file here:
tests/acceptance/WelcomeCept.php
<?php
$I = new AcceptanceTester($scenario);
$I->wantTo('ensure that frontpage works');
$I->amOnPage('/');
$I->see('Home');
- With an active PHP directory, add the host here:
tests/acceptance.suite.yml
Then run the test with
./codecept run
If the servers go haywire these things must be done:
- Make sure MySQL has access to the
HOST IP
(Using AWS RDB) - Check the
DNS
inAWS RDB
, Look atHealth Check
- Make sure
Composer
is Updated - Check
/var/logs/apache2/error.log
(legacy) So the easiest fix for now is to downgrade to [email protected] using
npm i -g [email protected]
Then cleanup and reinstall dependencies:
npm cache clean -f
rm -rf node_modules/ package-lock.json
npm i
This list is expired, some features will no longer be added.
- (Skip) Middleware CSRF Token.
- HLS with HTML5 through RMTP.
- Check Promotion for Expiration, ONLY IF THEY APPLY IT
- Make URL so promotion can trigger in a cookie and stay alive.
- Test out the pricing with the percentages!
- Test out the pricing with the price~
- eg:
- Promotions Table has no product_id and no user_id, it applies to ALL users globally.
- Promotions Table has two records with product_id, it applies ONLY to those products
- Promotion ALWAYS checks DELETED_AT, and EXPIRES_AT before doing anything.
- This will apply to the STANDARD promo code page (regular check)
- This will apply to the new checkout page.
MIT Open Source
© 2018 JREAM.com | Jesse Boyer