Monorepo for Aesthetic.Computer
aesthetic.computer
1worker_processes 1;
2events { worker_connections 1024; }
3
4rtmp {
5 server {
6 listen 1935;
7 chunk_size 4096;
8
9 application live {
10 live on;
11 record off;
12 }
13 }
14}
15
16http {
17 include mime.types;
18 default_type application/octet-stream;
19 sendfile on;
20 keepalive_timeout 65;
21
22 server {
23 listen 8080;
24 location / {
25 root /usr/share/nginx/html;
26 index index.html index.htm;
27 }
28 }
29}
30