Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Made changes to docs/FAQ and docs/Configuration. #1235

Merged
merged 1 commit into from
Dec 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/Configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ generated when you upload a file to the server.

## User Authentication

You can configure authentication for your Apollo Universal Starter Kit-based application in the `config/user.js` file.
You can configure authentication for your Apollo Universal Starter Kit-based application in the `config/auth.js` file.

### `secret`

Expand Down Expand Up @@ -403,7 +403,7 @@ Configures your application for using Secure Sockets Layer (SSL).
| devSerial | String | Sets the SSL certificate serial number number. Defaults to `00` |
| enabled | Boolean | Enables the use of SSL certificate. Defaults to `false` |

**NOTE**: the `CERTIFICATE_DEVSERIAL` constant is initialized to `00` in the `config/user.js` file.
**NOTE**: the `CERTIFICATE_DEVSERIAL` constant is initialized to `00` in the `config/auth.js` file.

Usage example:

Expand Down
2 changes: 1 addition & 1 deletion docs/FAQ.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ Reference: [#525](https://github.com/sysgears/apollo-universal-starter-kit/issue

## How do I enable Facebook and Google OAuth?

You can enable the social login functionality in the `config/user.js` file:
You can enable the social login functionality in the `config/auth.js` file:

```javascript
export default {
Expand Down
Loading