A Fastly Compute@Edge service that renders externally hosted Markdown files. https://markdown-at-edge.edgecompute.app/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
Leonora Tindall 8f8e06e661 Allow header on success 3 months ago
.cargo Initial working setup. 1 year ago
content Polish writing, css, and favicon 1 year ago
src Allow header on success 3 months ago
.gitignore Initial working setup. 1 year ago
Cargo.lock Upgrade to fastly 0.9 3 months ago
Cargo.toml Upgrade to fastly 0.9 3 months ago
README.md inclue all content for ease of editing 1 year ago
fastly.toml Update deps 9 months ago
rust-toolchain.toml Initial working setup. 1 year ago

README.md

Markdown@Edge

A Markdown renderer on the Compute@Edge platform from Fastly.

The main source file, src/main.rs, contains all the code for the renderer. The content on the server is stored in content/ for convenience.

Deploying Content

Simply use scp to copy the files to the server:

scp -r ./content/* example.com:/var/www-html/edgeblog/

Nginx Configuration

In order to best support this application, it's important to add the following line to Nginx's MIME types configuration:

text/markdown     md;

I also disabled gzip and set the max-age and cache-control headers as follows:

server {
  # ...
  location /edgeblog {
    # To illustrate the source to visitors.
    autoindex on;
    autoindex_exact_size off;
    autoindex_format html;
    autoindex_localtime on;

    # To facilitate tagging.
    gzip off;

    # Cache-Control headers
    expires 1h;
    add_header Cache-Control "public";
  }
}