Commit 76aa66

Troubleshooting
@@ 52,34 52,34@@
>| ### No Option to Login via OIDC
>|
>| Make sure Authentication is enabled, check "Enable Authentication" in Settings tab and set up root user credentials
- >|
+
>| ### Logging-in via OIDC Requires Token
>|
>| LubeLogger operates on an invite-only basis, a token will need to be generated for the user logging in via OIDC if it is their first time. Once an account for the user exists they will no longer be prompted for the token in subsequent login attempts.
- >|
+
>| ### No Auto-Redirect to OIDC Provider
>|
>| A LogOutURL must be provided for the OIDC provider otherwise the OIDC login flow will not be auto-initiated.
## Server Issues
- ### Can't Access LubeLogger Instance from Other Devices
+ >| ### Can't Access LubeLogger Instance from Other Devices
-
+ >|
- This problem is specific to the Windows Standalone Executable, the problem stems from the fact that Kestrel is configured by default to listen on and only on localhost. In order to get around this, you will need to retrieve the IPv4 address of your local machine, and add the following section into `appsettings.json`
+ >| This problem is specific to the Windows Standalone Executable, the problem stems from the fact that Kestrel is configured by default to listen on and only on localhost. In order to get around this, you will need to retrieve the IPv4 address of your local machine, and add the following section into `appsettings.json`
-
+ >|
- Note: replace `10.0.0.4:5000/5011` with your local ip address and port
+ >| Note: replace `10.0.0.4:5000/5011` with your local ip address and port
-
+ >|
- ```
+ >| ```
- "Kestrel": {
+ >| "Kestrel": {
- "Endpoints": {
+ >| "Endpoints": {
- "Http": {
+ >| "Http": {
- "Url": "http://10.0.0.4:5000"
+ >| "Url": "http://10.0.0.4:5000"
- },
+ >| },
- "Https": {
+ >| "Https": {
- "Url": "https://10.0.0.4:5011"
+ >| "Url": "https://10.0.0.4:5011"
- },
+ >| },
- }
+ >| }
- ```
+ >| ```
Additionally, see [[Setting up HTTPS|HTTPS]] for HTTPS/SSL Cert Configuration