This file contains hidden or 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
## ====================================================================================================== ## | |
## Visit this page for a list of all variables: https://github.com/arut/nginx-rtmp-module/wiki/Directives ## | |
## Visit this site for many more configuration examples: https://github.com/arut/nginx-rtmp-module ## | |
## This example file was put together by Andre "ustoopia" for usage on https://youtube.com/ustoopia ## | |
## ====================================================================================================== ## | |
user www-data; # Only used on linux. Nginx will run under this username. | |
worker_processes 1; # Set this to how many processors/cores CPU has. Relates to "worker_connections" | |
pid /run/nginx.pid; # Sets the location of the process id file (used on linux only). | |
include /etc/nginx/modules-enabled/*.conf; # Include all the optional configuration files stored here. | |
events { |