Skip to content

Instantly share code, notes, and snippets.

View patriclougheed's full-sized avatar

Patric Lougheed patriclougheed

View GitHub Profile
@patriclougheed
patriclougheed / streamer.conf
Last active May 7, 2023 14:24
YouPHPTube Streamer NginX Conf
server {
listen 80;
server_name <domain> <www.domain>;
root /var/www;
index index.php;
charset utf-8;
location = /favicon.ico { access_log off; log_not_found off; }
location = /robots.txt { access_log off; log_not_found off; }
@patriclougheed
patriclougheed / encoder.conf
Created June 1, 2018 19:30
YouPHPTube Encoder NginX Conf
server {
listen 80;
server_name <URL> <www.URL>;
root /var/www/encoder;
index index.php;
charset utf-8;
location = /favicon.ico { access_log off; log_not_found off; }
location = /robots.txt { access_log off; log_not_found off; }