1
0
Fork 0
mirror of https://git.tt-rss.org/fox/ttrss-docker-compose synced 2025-06-09 14:49:57 +02:00

various updates

This commit is contained in:
Andrew Dolgov 2019-11-15 17:42:50 +03:00
parent e38d98dcd4
commit cf2406f6a6
5 changed files with 35 additions and 13 deletions

View file

@ -14,6 +14,8 @@ http {
sendfile on;
index index.php;
upstream app {
server app:9000;
}
@ -22,14 +24,9 @@ http {
listen 80;
root /var/www/html;
location / {
try_files $uri $uri =404;
}
location /tt-rss/cache {
aio threads;
internal;
access_log /var/log/nginx/fakecake_debug.log;
}
location ~ \.php$ {
@ -49,5 +46,10 @@ http {
fastcgi_pass app;
}
location / {
try_files $uri $uri/ =404;
}
}
}