|
You are here |
blog.nuculabs.de | ||
| | | | |
greg.molnar.io
|
|
| | | | | Since Kamal 2 can host multiple sites on the same server, I am consolidating my apps into larger hosts so I have less servers to worry about. Most of my apps are Rails apps, but I have a few static jekyll sites like this blog and I decided to look into how could I move this site to a server I host other Rails apps on. | |
| | | | |
memo.mx
|
|
| | | | | Docker multi-stage build is a great way to build a container images with a minimal footprint. Compiled languages like Go or Rust can take advantage of this by just shipping a binary to a container This is an example from the official docs: FROM golang:1.16 WORKDIR /go/src/github.com/alexellis/href-counter/ RUN go get -d -v golang.org/x/net/html COPY app.go ./ RUN CGO_ENABLED=0 go build -a -installsuffix cgo -o app . FROM alpine:latest RUN apk --no-cache add ca-certificates WORKDIR /root/ COPY --from=0 /go/src/github. | |
| | | | |
hugosum.com
|
|
| | | | | In this post I will show you how to optimize the performance of a SvelteKit project by using brotli compression and serve those assets. | |
| | | | |
thomasvilhena.com
|
|
| | | [AI summary] This blog post explains how to set up an Nginx reverse proxy with Docker and Certbot for SSL certificate management, focusing on configuration files and services for load balancing and secure communication. | ||