1
0
mirror of https://github.com/RSS-Bridge/rss-bridge.git synced 2025-07-13 21:16:23 +02:00

Use standard Docker logs ()

Instead of storing logs inside the container (where then cannot easily be seen not rotated), consider using the standard Docker approach of writing to standard output
https://docs.docker.com/config/containers/logging/
This commit is contained in:
Alexandre Alapetite
2023-05-11 01:44:11 +02:00
committed by GitHub
parent 50865d5741
commit e99e026fa8

@ -2,8 +2,8 @@ server {
listen 80 default_server; listen 80 default_server;
listen [::]:80 default_server; listen [::]:80 default_server;
root /app; root /app;
access_log /var/log/nginx/rssbridge.access.log; access_log /dev/stdout;
error_log /var/log/nginx/rssbridge.error.log; error_log /dev/stderr;
index index.php; index index.php;
location ~ /(\.|vendor|tests) { location ~ /(\.|vendor|tests) {