Testing to see how often google calendar really pulls our ics feeds. The ics file we are hosting has a 15 minute TTL. This docker container hosts it in nginx and stores logs.
(Using a docker container so that easy to find in logs and not polluted by other things)
on host:
- in /etc/nginx/sites-available/recaltest.conf:
upstream recaltest.localhost {
server 127.0.0.1:3165;
}
server {
#listen 80;
gzip_types text/plain text/css application/json application/x-javascript
text/xml application/xml application/xml+rss text/javascript;
server_name dev.recal.io;
location / {
proxy_pass http://recaltest.localhost;
include /etc/nginx/proxy_params;
}
}
-
make symlink to it in sites-enabled
-
sudo service nginx reload
-
run.sh
-
add to gcal, look at logs after a few hours. then
stop.sh
.