mirror of
https://github.com/tubearchivist/tubearchivist
synced 2024-11-02 09:41:07 +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;
|
||
|
}
|
||
|
|
||
|
}
|