JustSKY
JustSKY
seems to be an isssue with Prisma ``` #12 267.6 [4/4] Building fresh packages... #12 283.5 $ prisma generate #12 289.1 Error: Unknown binaryTarget linux-arm64-openssl-undefined and no custom engine files...
> I was able to build a multi-arch image (`linux/arm64,linux/amd64`) using GitHub Actions by adding `binaryTargets = ["native"]` to `schema.prisma` (and using `node:slim` as base). Yes, I am able to...
I faced the same issue using the latest image (arm64) that was pushed yesterday  ### Logs ```ini today at 4:45:11 PM2022-07-23T11:15:11.814859115+00:00 INFO ┝━ i [info]: | uri: /auth/reset/step1/test today...
I have File browser behind [Authelia](https://github.com/authelia/authelia). I also added a bypass rule in Authelia config for sharing files. ```yml access_control: rules: - domain: - "file.DOMAIN" #File Browser resources: - "^/api/public/dl/*"...
> @Just5KY can you share your `.filebrowser.json`? I have > > ```json > { > "baseURL": "", > "address": "", > "port": 8080, > "log": "stdout", > "database": "/database.db", >...
@wlanut ```json - "^/api/public/dl/*" - "/share/*" ``` This URI path is bypassed So anyone clicks on the share link, they can access the share. But if they go anywhere else,...
@wlanut I was able to reproduce it, but it's alright. No one can get in without interacting with authelia.
Yes thats exaclty what i wanted ```json "options":["capture_commands"] "options":["capture_commands","fix_get_client_ip"] ``` Thankyou
@t3chn0m4g3 yup i was able to reproduce this ```json "smtp":{ "port":25, "ip":"0.0.0.0", "username":"root", "password":"123456", "log_file_name":"smtp.log", "max_bytes":1000000, "backup_count":10, "options":["capture_commands"] } ``` ```bash [root@sky ~]# telnet IP Trying 152.67.188.122... Connected to 152.67.188.122....
@t3chn0m4g3 did you test all the modules or just SMTP?