- Poland
- https://gameplayer.tru.io
-
Jakub Graczykowski 16 years old male.
- Joined on
2022-11-24
Support for LibreCaptcha?
GitHub OAuth -
invalid session
error.
Option to disable SSL Certificates?
It works, but only partially. Fetching images between i.e. two FoundKeys doesn't work.
Fail2Ban configuration file
Option to disable SSL Certificates?
Custom webprefix / webroot.
Also here's the sneak-peak HTML code for redirecting (if location is /foundkey/):
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8"/>
<meta http-equiv='X-Frame-…
Custom webprefix / webroot.
There's a second way to change webroot. Host FoundKey through nginx on different port, set X-Frame-Options
to ALLOW-FROM SAMEDOMAIN
& Embed it into HTML, set as index.html
. Finally throw in…
Custom webprefix / webroot.
I mean, I just wanted to have FoundKey under /foundkey/
directory in the URL. But still FoundKey is looking for resources at /
.
Why I want to do that is because I want to have main page /
…
Custom webprefix / webroot.
By default I'm using nginx proxy redirects:
location /api/ {
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
…
Custom webprefix / webroot.