How to set password? #1525
-
Any Guide to ask user have to input default password then can access personal next web service? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
@yourplanner, do you mean OpenAI API key? It is this https://help.openai.com/en/articles/4936850-where-do-i-find-my-secret-api-key Also, in the If about Auth code, it is just any code: Or do you mean some other? Like on adding the user login page? I can be like on these: https://blog.devso.io/implementing-credentials-provider-on-nextjs-and-nextauth, https://codevoweb.com/setup-and-use-nextauth-in-nextjs-13-app-directory, but it is not the simplest task, it can be a lot of little bugs to fix. It is often some old info, because |
Beta Was this translation helpful? Give feedback.
-
I'm having an issue where that Auth page takes my code that I have set as an environment variable and opens up the Chatbot window again, but I get the following error message. Anyone know how to resolve this? |
Beta Was this translation helpful? Give feedback.
-
You can combine it with nginx that can provide a basic auth easily. The example of nginx.conf as following:
Now, you can access to https://your.server.domain, but you will be demanded to provide user and password matched with credentials in More details in https://nginx.org/en/docs/http/ngx_http_auth_basic_module.html |
Beta Was this translation helpful? Give feedback.
@yourplanner, do you mean OpenAI API key? It is this https://help.openai.com/en/articles/4936850-where-do-i-find-my-secret-api-key Also, in the
README.md
file of this project, in theGet Started
section it is presented: https://github.com/Yidadaa/ChatGPT-Next-Web#get-started.And in settings you can past
If about Auth code, it is just any code:
Or do you mean some other? Like on adding the user login page? I can be like on these: https://blog.devso.io/implementing-credentials-provider-on-nextjs-and-nextauth, https://codevoweb.com/setup-and-use-nextauth-in-nextjs-13-app-directory, but it is not the simplest task, it can be a lot of little bugs to fix. It is often some old info, because
N…