Browse Source

fix long line in code block messing with page width

main
Noah Hall 2 years ago
parent
commit
2920c85e9b
1 changed files with 5 additions and 1 deletions
  1. +5
    -1
      posts/self-hosting-goatcounter-nginx.md

+ 5
- 1
posts/self-hosting-goatcounter-nginx.md View File

@ -81,7 +81,11 @@ After=nginx
[Service]
Type=simple
ExecStart=/usr/local/bin/goatcounter serve -listen localhost:8085 -db "sqlite://home/noah/db/goatcounter.sqlite3" -tls none -port 8085
ExecStart=/usr/local/bin/goatcounter serve \
-listen localhost:8085 \
-db "sqlite://home/noah/db/goatcounter.sqlite3" \
-tls none \
-port 8085
Restart=always
RestartSec=10


Loading…
Cancel
Save