[SUPPORT] Tandoor Recipes - CorneliousJD Repo


Recommended Posts

On 4/26/2021 at 6:52 AM, Evidenz said:

Awesome project! Perhaps I am a bit blind but how do I add additional users?

image.png.fe835915a4a686cf71b4abff91bc9faf.png

 

I do not have the "+ Add" option here.

I am not sure if there is a better way but I just figured this out if you or @master_of_pants have not yet. Or for anyone else...

 

- Log in to your admin account and access the 'System Settings' page

- The first section says 'Invite Links' with a button underneath

- Click the button for 'Show Links'

- Click the '+' next to the words 'Invite Links List'

- If you know the username you want to add you can type it in, or select only the user group, link expiration date, and space.

- From the list view, simply right click on the word 'link' next to the user you just created and send that link in an email or text message, etc.

 

 

  • Thanks 1
Link to comment
  • 2 weeks later...
  • 3 weeks later...
  • 2 weeks later...

Since the 0.16.2 update, invite links are redirecting to */accounts/signup/ with the message "Sign Up Closed." Is anyone else having this issue?

 

Edit: maxkowalski's ENABLE_SIGNUP fix below resolves the issue.

Edited by 9BAR
Link to comment
  • 6 months later...
3 hours ago, xaositek said:

Any idea where I can do this?

No clue. I took a cursory look at the project page, but didn't see anything. Probably need to contact the developer of the app itself, this thread is for getting the app running on Unraid, it doesn't cover direct app support.

 

Why not just set up rules in the nginx location config for this specific app to deny outside ip's?

Link to comment
  • 3 weeks later...
4 hours ago, ScoobyAS said:

Hi CorneliousJD,

regrettably the response of the Web GUI is very slow on my UnRAID.

Is there something I have to consider, e.g. will I have to adjust some additional parameters?

 

i don't personally use this container anymore, I opted to manage my recipes a different way, however there shouldn't be any GUI performance issues, espcially w/ an external database. The only way I could see it getting slow is if you've packed it with a ton of recipes. 

 

Is there anything specifically that is slow? 

Link to comment
34 minutes ago, ScoobyAS said:

Good to know, then I will also bury the project.
Thanks for your quick reply.

 

Well hang on a minute, lol.

 

No need to bury the project. I didn't create and I do not maintain Tandoor Recipes, I only made a docker template for it on unraid. The project is still very much active and in-use by many. I just don't personally use it. I'd suggest reaching out on the devs github page if you have issues with the project itself. 

Link to comment

Just got this to work with SWAG as the reverse proxy. I used the method that SpaceInvaderOne uses to fix a 502 Bad Gateway fault in his latest Nextcloud video - this time here: https://youtu.be/id4GcVZ5qBA?t=1375

 

I used the SWAG recipes example conf file and just changed the upstream app to point to my unraid server IP and upstream port to the host side port. I made sure I had the media share in the SWAG docker container as per the instructions in the example conf file. Restart SWAG and it is now working perfectly!

 

Here is the code I use (with IPs blanked out)

 

## Version 2021/05/18
# make sure that your dns has a cname set for recipes
# make sure to mount /media/ in your swag container to point to your Recipes Media directory

# if using Authelia use this one:
# Doc: https://vabene1111.github.io/recipes/install/docker/#using-proxy-authentication

server {
    listen 443 ssl;
    listen [::]:443 ssl;

    server_name recipes.*;

    include /config/nginx/ssl.conf;

    client_max_body_size 0;

    # enable for ldap auth, fill in ldap details in ldap.conf
    #include /config/nginx/ldap.conf;

    # enable for Authelia
    #include /config/nginx/authelia-server.conf;
    
    # serve media files
    location /media/ {
        alias /media/;
    }
    
    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 /ldaplogin;

        # enable for Authelia
        #include /config/nginx/authelia-location.conf;

        include /config/nginx/proxy.conf;
        include /config/nginx/resolver.conf;
        set $upstream_app xxx.xxx.x.x;
        set $upstream_port 8154;
        set $upstream_proto http;
        proxy_pass $upstream_proto://$upstream_app:$upstream_port;

    }
}

  • Like 1
Link to comment
  • 1 month later...
  • 2 months later...

Hello together,

I'm working with Tandoor now for 4 Months and find it quite nice. I'm not sure wether this is an Topic fo the Unraid or the Github Forum.  I did a little mistake because i used the internal SQLLite which makes some problems now due to the performance with motre Recepies. Is there a way to switch from SQLLite to an external Database without loosing the Data or do i have to export it somehow and import it later? 

 

Thanks!

Edited by Sveeny
Link to comment
7 hours ago, Sveeny said:

Hello together,

I'm working with Tandoor now for 4 Months and find it quite nice. I'm not sure wether this is an Topic fo the Unraid or the Github Forum.  I did a little mistake because i used the internal SQLLite which makes some problems now due to the performance with motre Recepies. Is there a way to switch from SQLLite to an external Database without loosing the Data or do i have to export it somehow and import it later? 

 

Thanks!

 

This may be better asked on github because this support thread is really just specific to the unraid setup/unraid template issues. 

 

Link to comment
  • 3 months later...

Hi @CorneliousJD,

 

There has just been an update to this container that requires two additional varibles to be added.

Could you please update the template to add these in:

 

GUNICORN_WORKERS=1

GUNICORN_THREADS=1

 

This resolves an issue with the container failing to start and the fix is from the Tandoor Discord Server.

Also see this Github Commit: https://github.com/TandoorRecipes/recipes/commit/904358bb003ab581da2f4219f90e55a010bb426c

 

Here is the proper bug report for the issue: https://github.com/TandoorRecipes/recipes/issues/2051

Edited by Ciri
Adding bug report.
Link to comment
22 hours ago, Ciri said:

Hi @CorneliousJD,

 

There has just been an update to this container that requires two additional varibles to be added.

Could you please update the template to add these in:

 

GUNICORN_WORKERS=1

GUNICORN_THREADS=1

 

This resolves an issue with the container failing to start and the fix is from the Tandoor Discord Server.

Also see this Github Commit: https://github.com/TandoorRecipes/recipes/commit/904358bb003ab581da2f4219f90e55a010bb426c

 

Here is the proper bug report for the issue: https://github.com/TandoorRecipes/recipes/issues/2051

 

Thanks for posting this - I don't use this container anymore so I didn't notice it needed this. Much appreciated.

i've updated the XML for the template here: https://github.com/CorneliousJD/Docker-Templates/blob/master/recipes.xml

 

It should push live in a few hours to CA.

If there's any outstanding issues after this let me know.

Link to comment
  • 2 weeks later...

Would someone mind sharing their settings for getting this template working with postgres? I've tried various different settings and none have worked for me so far. Also, CorneliousJD, if do you don't mind me asking, what solution did you ended up using? Was it another Docker image I should know about? All of these recipe images solutions are imperfect, and I'm just curious so see what people have settled on. And thanks for compiling this for us!

Link to comment
  • 4 weeks later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.