Everything posted by fithwum
-
[Support] fithwum - teamspeak-server
i am pushing out an update now to fix some things. but it looks more like you have a connection problem to teamspeak that might be corrupting the download somehow from them
-
[Support] fithwum - teamspeak-server
i recommend you try and install my docker and see if that helps the easy way is to install with the tag "fithwum/teamspeak-server:basic" it is very simple and just works
-
[Support] fithwum - teamspeak-server
this it not the support thread for that docker that is not my docker you need to contact ich777
-
[Support] fithwum - minecraft server
Support for Minecraft server docker Application: Minecraft Application Site: https://www.minecraft.net Docker Hub: https://hub.docker.com/r/fithwum/minecraft/ Github: https://github.com/fithwum/minecraft/ This is a simple Minecraft server, the default tag will be vanilla but you can select from testing or fabric as well if you want. I am working on a forge version as well Please post any questions/issues relating to this docker you have in this thread. EDIT: I have changed the minecraft templates and removed the minecraft-fabric template to update for the new fabric tag simply change it to fithwum/minecraft:fabric and it will update no problem
-
[Support] fithwum - FoundryVTT
It is available you just need to add the :alpine tag to it now so the new repository is fithwum/foundry_vtt:alpine because of the changes i have made to it for adding other versions and things
-
Tdarr and nvidia encoding not working on my GPU
for some strange reason mine is working again. could be from rebooting the server or reinstalling the docker i don't know
-
Tdarr and nvidia encoding not working on my GPU
i have the same problem and it just started the docker sees the GPU no problem just will not use it and no idea why. it was working the other day.
-
[Support] fithwum - FoundryVTT
i did have the same problem as you but cant for the life of me remember how i fixed it. i will try and find how i did it and get back to you
-
[Support] fithwum - FoundryVTT
your site seems to load just fine. in an older post i put up my working proxy config for swag you could have a look at that and see the difference with yours
-
[Support] fithwum - FoundryVTT
what version incompatibilities are you running into? Most things can be updated from within the app itself i think even foundry can update from inside now.
-
[Support] fithwum - teamspeak-server
this is not a docker problem this is a teamspeak problem, you would need to access the serverquery to fix this.
-
[Support] fithwum - FoundryVTT
I am not sure why that is happening the update is working fine on my system. the error is normally an unraid error as far as i know
-
[Support] fithwum - FoundryVTT
you should also be able to set your network to bridge and change the port that way. i run mine through swag and they have a config for foundry now i think.
-
[Support] Linuxserver.io - MariaDB
still getting the error after update and fix but at least it works again
-
[Support] ich777 - Gameserver Dockers
Server gets to this and seems to stop and nothing further. Valheim Log.txt
-
[Support] fithwum - FoundryVTT
My group uses TeamSpeak3 and sometimes nextcloud talk.
-
[Support] fithwum - FoundryVTT
I have mine on a custom proxynet for use with swag, you might be able to run that way to have 2 instances running. Glad to see you got it working tho
-
[Support] fithwum - FoundryVTT
i did it based on the Linux version and that works well, but from what i can tell the node.js one could work as well
-
[Support] fithwum - FoundryVTT
i dont know on that one i will have to have a look at it and test it on my system and get back to you
-
[Support] fithwum - FoundryVTT
there are earlier posts that have configs that work. I did post one that works with swag and i might work for you.
-
[Support] fithwum - FoundryVTT
worth a shot thanks for the info i will try it today and push out an update EDIT: Seems to work well will try over the next few days but update is out now for the docker.
-
[Support] fithwum - FoundryVTT
looks like you might be using an old config that has a problem with swag if you scroll up a bit you should see another post i made with an updated one that works you just need to rill in the relevant info for your setup
-
[Support] fithwum - FoundryVTT
to update the version of foundry you can click the update button in foundry and it will work the docker has no control over what version you are running or you can shut down the docker and update the files yourself using a file explorer.
-
[Support] fithwum - FoundryVTT
Im glad that worked
-
[Support] fithwum - FoundryVTT
sounds like a reverse proxy error that i ran into. This is my proxy config that works with swag. server { listen 443 ssl; listen [::]:443 ssl; server_name foundryvtt.*; # Listen on port 443 using SSL certificates ssl_certificate "/etc/letsencrypt/live/"PUT URL HERE"/fullchain.pem"; ssl_certificate_key "/etc/letsencrypt/live/"PUT URL HERE"/privkey.pem"; include /config/nginx/ssl.conf; #add_header Referrer-Policy "same-origin" always; #add_header Access-Control-Allow-Origin https://foundryvtt."PUT URL HERE" always; client_max_body_size 1024M; fastcgi_buffers 64 4K; location / { #enable the next two lines for http auth #auth_basic "Restricted"; #auth_basic_user_file /config/nginx/.htpasswd; #enable the next two lines for ldap auth #auth_request /auth; #error_page 401 =200 /login; # Set proxy headers proxy_set_header Host $host; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; # These are important to support WebSockets # proxy_set_header Upgrade $http_upgrade; # proxy_set_header Connection "Upgrade"; include /config/nginx/proxy.conf; resolver 127.0.0.11 valid=30s; set $upstream_app FoundryVTT; proxy_max_temp_file_size 1024m; proxy_pass http://$upstream_app:30000; } } # Optional, but recommend. Redirects all HTTP requests to HTTPS for you server { if ($host = foundryvtt."PUT URL HERE") { return 301 https://$host$request_uri; } listen 80; listen [::]:80; server_name foundryvtt."PUT URL HERE"; return 404; }