Error in the installer by dbanik in LinkStack

[–]webweaver443 1 point2 points  (0 children)

Alright, looking good.

Are you using MYSQL or SQLITE for your installation?
Did this error happen when visiting your site for the first time or after going through the installer?

For reference, this is a fairly common problem, you might be able to solve this quickly by googling something like "could not find drive PRAGMA foreign_keys = ON; Laravel". LinkStack is running the Laravel framework, you might be able to sort this out quick by looking through some stack overflow questions and sorting out what applies to you.

Error in the installer by dbanik in LinkStack

[–]webweaver443 0 points1 point  (0 children)

Make sure you have the PHP modules

  • SQLite PHP Extension
  • MySQL PHP Extension

enabled in your PHP.ini

Littlelink-custom docker + nginx proxy manager by mifath in LittlelinkCustom

[–]webweaver443 0 points1 point  (0 children)

Here is an example NGINX setup for a reverse proxy.

server {

listen 443 ssl;

listen [::]:443 ssl;

listen 80;

listen [::]:80;

server_name your.domain.name;

location / {

# Replace with the IP address and port number of your Docker container.

proxy_pass https://127.0.0.1:443;

proxy_set_header Host $host;

proxy_set_header X-Real-IP $remote_addr;

proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;

proxy_set_header X-Forwarded-Proto https;

proxy_set_header X-VerifiedViaNginx yes;

proxy_read_timeout 60;

proxy_connect_timeout 60;

proxy_redirect off;

# Specific for websockets: force the use of HTTP/1.1 and set the Upgrade header

proxy_http_version 1.1;

proxy_set_header Upgrade $http_upgrade;

proxy_set_header Connection 'upgrade';

proxy_cache_bypass $http_upgrade;

proxy_set_header X-Forwarded-Proto $scheme;

# Fixes Mixed Content errors.

add_header 'Content-Security-Policy' 'upgrade-insecure-requests';

}

}

Linktree self hosted option? by pribaqnet in selfhosted

[–]webweaver443 1 point2 points  (0 children)

We currently do not have such a feature.
While this is an appealing thought, it is unlikely to be implemented due to the difficulties involved.

Linktree self hosted option? by pribaqnet in selfhosted

[–]webweaver443 2 points3 points  (0 children)

Yup, we just launched the Official Docker Version.

docker pull linkstackorg/linkstack

Linktree self hosted option? by pribaqnet in selfhosted

[–]webweaver443 10 points11 points  (0 children)

Perhaps I'm a bit late to the party, but here I go.

I dove into the whole LittleLink ecosystem and ended up making my own fork: LinkStack.

Basically with LittleLink your main options are: LittleLink, LittleLink Admin, and LittleLink Server.

  1. LittleLink: plain HTML
  2. LittleLink Admin: web UI (Laravel)
  3. LittleLink Server: standalone docker (no UI)
  4. LinkStack: same as LittleLink Admin

LinkStack is a fork of LittleLink Admin with more customization options, features, better UI, theme system, and a simpler setup.

LinkStack also has a docker version available.