Teddybaer123

Members
  • Posts

    5
  • Joined

Posts posted by Teddybaer123

  1. Hey guys,

    I was thinking about upgrading my postgres database to version 14. But since the upgrade process is kind of complicated I thought I can simply convert my exiting database to the new postgres 14 database, like I did when I switched from mariadb to postgres.

     

    I have nextcloud running in an docker container in unraid and I am using the following command to convert the database:
    occ db:convert-type --all-apps --port 55432 --clear-schema pgsql nextcloud 10.10.42.42 nextclouddb

     

    But then I receive the following error message:
    In ConvertType.php line 149:
                                            
      Can not convert from pgsql to pgsql. 

     

     

    I already received the information from reddit I need the pg_dump and pg_restore commands here to simply backup the existing database and restore it to the new one.

     

    Unfortunately I wasn't lucky to find a instruction on how to do it on unraid. I am not a professional so I have trouble figuring it out by myself/Google.

    Has someone already switched from postgres 13.4 to 14 on unraid and can tell me the commands and where to type them in to update my postgres database?

  2. Hey guys,

     

    here is my swag reverse proxy setup amp subdomain conf file. For me it is working perfectly.

     

    amp.subdomain.conf

     

    # AMP
    server {
        listen 443 ssl;
        listen [::]:443 ssl;
    
        server_name YOURSUBDOMAIN.*;
    	
    	include /config/nginx/ssl.conf;
    	
    	client_max_body_size 0;
        
    	location / {
    			include /config/nginx/proxy.conf;
    			resolver 127.0.0.11 valid=30s;
    			set $upstream_app AMP;
    			set $upstream_port 8080;
    			set $upstream_proto http;
    			proxy_pass $upstream_proto://$upstream_app:$upstream_port;
    
    		}
    }

     

    I hope it helps someone.

     

     

    • Like 1
  3. Hi,

    I am trying to route the Minecraft Server traffic through my letsencrypt reverse proxy but I just don't get it to work. I already made cnames for my domain and for my cloudflare dns but I think I am failing at the *.subdomain.conf file in the proxy-confs folder inside of nginx.

     

    Is anyone running his/her server with an lets encrypt reverse proxy and can send or tell me what I have to set in the minecraft.subdomain.conf file?

     

    I already read in this article that it's possible:

    But no conf file example there.