2023-05-10 12:09:50 +02:00
|
|
|
events {}
|
|
|
|
|
|
|
|
http {
|
|
|
|
include /etc/nginx/mime.types;
|
|
|
|
default_type application/octet-stream;
|
|
|
|
|
|
|
|
server {
|
|
|
|
listen 80;
|
2023-05-10 15:26:50 +02:00
|
|
|
location /static {
|
|
|
|
autoindex on;
|
2023-05-10 12:09:50 +02:00
|
|
|
alias /usr/src/app/static/;
|
|
|
|
}
|
2023-05-10 13:37:29 +02:00
|
|
|
|
2023-05-10 15:26:50 +02:00
|
|
|
location /media {
|
|
|
|
autoindex on;
|
2023-05-10 13:37:29 +02:00
|
|
|
alias /usr/src/app/media/;
|
|
|
|
}
|
2023-05-10 12:09:50 +02:00
|
|
|
}
|
|
|
|
}
|