events { worker_connections 1024; } http { include mime.types; default_type application/octet-stream; sendfile on; keepalive_timeout 65; server { listen 81; server_name localhost; location / { root html; index index.html index.htm; } location /stat { rtmp_stat all; rtmp_stat_stylesheet stat.xsl; } location /stat.xsl { root html; } location /control { rtmp_control all; } } } rtmp { server { listen 1935; chunk_size 4096; application live { live on; record off; on_publish http://[YouPHPTubeURL]/plugin/Live/on_publish.php; } } }