mirror of
https://github.com/tubearchivist/tubearchivist.git
synced 2024-10-31 17:30:12 +00:00
18 lines
226 B
Nginx Configuration File
18 lines
226 B
Nginx Configuration File
server {
|
|
|
|
listen 8000;
|
|
|
|
location /cache/ {
|
|
alias /cache/;
|
|
}
|
|
|
|
location /media/ {
|
|
alias /youtube/;
|
|
}
|
|
|
|
location / {
|
|
include uwsgi_params;
|
|
uwsgi_pass localhost:8080;
|
|
}
|
|
|
|
} |