I eat words
Linuxoid
Matrix - @saint:group.lt
- 4 Posts
- 22 Comments
I eat words@group.ltto Selfhosted@lemmy.world•Cloudflare is not working for me the way I hoped it would.English11·2 years agofirst you should check logs of cloudflare tunnel - most likely it cannot access your docker network. if you are using cloudflare container - it should use same network as a Immich instance.
in short: find the tunnel log and see what is happening there.
I eat words@group.ltto Selfhosted@lemmy.world•Has anyone tried Anytype, and how are you finding it?English4·2 years agoKinda like it, but there are some ux things I don’t like. i.e. - tags are not in the search
I eat words@group.ltto Selfhosted@lemmy.world•Need help ensuring my public mediawiki is safe before launchEnglish2·2 years agousually i add more than 1 ip and also vultr firewall can be managed to change ip. tailscale can be used as well. there are options!
I eat words@group.ltto Selfhosted@lemmy.world•Need help ensuring my public mediawiki is safe before launchEnglish1·2 years agoif you configure ssh access only from your home ip - then fail2ban is not needed.
I eat words@group.ltto Selfhosted@lemmy.world•Need help ensuring my public mediawiki is safe before launchEnglish1·2 years agosorry, this is kinda like a firewall, but protecting websites, so many vulnerabilities are filtered out. it does not protect you 100% percent (nothing does). it might be hard to setup, in that case there is an option to use waf as a service, i.e. - cloudflare has such offering, maybe there are others as well. i have looked into vultr - they seem to offer only a “usual” type of firewall, not http/application based.
I eat words@group.ltto Selfhosted@lemmy.world•Need help ensuring my public mediawiki is safe before launchEnglish5·2 years agoGet some WAF for the public facing app, maybe at least https://github.com/nbs-system/naxsi .
I eat words@group.ltto Linux@lemmy.ml•Debian Systems Now Patched Against "Downfall" and "INCEPTION" CPU FlawsEnglish12·2 years agoAny observed impact to performance?
I eat words@group.ltto Linux@lemmy.ml•What terminal file manager that you use, if any?English4·2 years agomidnight commander, especially if i need to delete files/dirs with ‘-’ and non-ascii characters. i do it without thinking.
lemmy ;)
this is very simple solution i have used to clip entries in: https://github.com/blinkinglight/go-journal2
I eat words@group.ltto Open Source@lemmy.ml•What do you think it would take for people to leave GitHub?English8·2 years agopricing changes, i.e. - removing free tier and increasing other plan prices.
I eat words@group.ltto Selfhosted@lemmy.world•Hosting provider advice for a Telegram bot?English1·2 years agoprobably could fit into fly.io free tier. also as others have mentioned - oracle oci provides a nice free vm, which can be shut off if usage of resources is low, but you can workaround it by increasing a volume a bit more than free tier allows and pay something like a 1-2$ for it monthly.
I eat words@group.ltto Selfhosted@lemmy.world•How to monitor standard nginx accesses?English1·2 years agoAges ago there was such a tool - Webalizer and everybody was using it :) not anymore…
using mostly operator from percona for kubernetes, sometimes just a simple deployment. Running postgresql for Lemmy from docker-compose as a container.
I use https://www.talkwalker.com/alerts to setup notifications via RSS on keywords that are interesting to me.
I eat words@group.ltto Selfhosted@lemmy.world•Building Lemmy docker image for ARM64English8·2 years agohi,
i am using this
root@instance-20211112-2005:/opt/lemmy/lemmy/docker# cat Dockerfile.arm64 FROM rust:1.70.0 as builder WORKDIR /app COPY . . # This can be set to release using --build-arg ARG RUST_RELEASE_MODE="debug" COPY . . # Build the project # Debug mode build RUN --mount=type=cache,target=/app/target \ if [ "$RUST_RELEASE_MODE" = "debug" ] ; then \ echo "pub const VERSION: &str = \"$(git describe --tag)\";" > "crates/utils/src/version.rs" \ && cargo build \ && cp ./target/$RUST_RELEASE_MODE/lemmy_server /app/lemmy_server; \ fi # Release mode build RUN \ if [ "$RUST_RELEASE_MODE" = "release" ] ; then \ echo "pub const VERSION: &str = \"$(git describe --tag)\";" > "crates/utils/src/version.rs" \ && cargo build --release \ && cp ./target/$RUST_RELEASE_MODE/lemmy_server /app/lemmy_server; \ fi FROM debian:bullseye-slim RUN apt-get update && apt-get install -y libpq5 ca-certificates && rm -rf /var/lib/apt/lists/* COPY --from=builder /app/lemmy_server /app/lemmy CMD ["/app/lemmy"]
Also Lemmy developers are working on cross build - so it should be available in the future I hope :)
yay! thank you all!
i have made a not-so-quick-but-dirty Dockerfile to build on arm64
FROM rust:1.70.0 WORKDIR /app COPY . . RUN echo "pub const VERSION: &str = \"$(git describe --tag)\";" > "crates/utils/src/version.rs" RUN cargo build --release RUN apt update RUN apt -y install libpq5 RUN cp /app/target/release/lemmy_server /app/lemmy CMD ["/app/lemmy"]
later I am planning to improve it a bit, to make the image smaller if i can
I eat words@group.ltto Selfhosted@lemmy.world•I can't seem to SSH into my server over VPN and can't figure out why.3·2 years agoany errors you could show us?
a source code of a game ;))