LIST

NGINX: single page application static website (nginx docker)

./nginx.conf user nginx; worker_processes auto; error_log /var/log/nginx/error.log notice; pid /var/run/nginx.pid; events { worker_connections 1024; } http { include /etc/nginx/mime.types; default_type application/octet-stream; log_format main '$remote_addr - $remote_user [$time_local] "$request" ' '$status $body_bytes_sent "$http_referer" ' '"$http_user_agent" "$http_x_forwarded_for"'; access_log /var/log/nginx/access.log main; server { listen 80; root /usr/share/nginx/html; index index.html; location / { # First attempt to serve request as file, then # as directory, then fall back to redirecting to index.html try_files $uri $uri/ $uri....

September 26, 2022

Project: Evernote to Contentful

Get evernote notes into contentful CMS. Inspired by Thoughtworks Radar’s ‘headless CMS’ and mention of ‘contentful’.

December 1, 2020

Pet-Project: StudyBooks

predecessor of mindmark

February 1, 2020