Commit 7114f6

2025-10-17 21:19:37 Hargata Softworks: x
installation/troubleshooting.md ..
@@ 89,81 89,9 @@
>|
>| This error is either caused by a missing field in the input object or if the API client is passing the payload in as json. If all fields are already provided, check and make sure that the payload is passed in as either form-data or x-www-urlencoded
- ### 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`
-
- Note: replace `10.0.0.4:5000/5011` with your local ip address and port
-
- ```
- "Kestrel": {
- "Endpoints": {
- "Http": {
- "Url": "http://10.0.0.4:5000"
- },
- "Https": {
- "Url": "https://10.0.0.4:5011"
- },
- }
- }
- ```
-
- Verify that your JSON is still valid, make sure to add `,` appropriately, or you will get an error.
-
- Full Example of appsettings.json with the Kestrel portion added:
-
- ```
- {
- "Logging": {
- "LogLevel": {
- "Default": "Information",
- "Microsoft.AspNetCore": "Warning"
- }
- },
- "AllowedHosts": "*",
- "UseDarkMode": false,
- "UseSystemColorMode": false,
- "EnableCsvImports": true,
- "UseMPG": true,
- "UseDescending": false,
- "EnableAuth": false,
- "DisableRegistration": false,
- "EnableRootUserOIDC": false,
- "HideZero": false,
- "AutomaticDecimalFormat": false,
- "EnableAutoReminderRefresh": false,
- "EnableAutoOdometerInsert": false,
- "EnableShopSupplies": false,
- "ShowCalendar": true,
- "EnableExtraFieldColumns": false,
- "UseUKMPG": false,
- "UseThreeDecimalGasCost": true,
- "UseThreeDecimalGasConsumption": true,
- "UseMarkDownOnSavedNotes": false,
- "HideSoldVehicles": false,
- "PreferredGasMileageUnit": "",
- "UserColumnPreferences": [],
- "UseUnitForFuelCost": false,
- "PreferredGasUnit": "",
- "UserLanguage": "en_US",
- "VisibleTabs": [ 0, 1, 4, 2, 3, 6, 5, 8 ],
- "TabOrder": [ 8, 9, 10, 0, 1, 4, 2, 7, 3, 6, 5 ],
- "DefaultTab": 8,
- "UserNameHash": "",
- "UserPasswordHash": "",
- "DefaultReminderEmail": "",
- "Kestrel": {
- "Endpoints": {
- "Http": {
- "Url": "http://10.0.0.4:5000"
- },
- "Https": {
- "Url": "https://10.0.0.4:5011"
- },
- }
- }
- }
- ```
+ >| ### 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 configure the HTTP Endpoint via the Server Settings Configuratorwww
Additionally, see [[Setting up HTTPS|Advanced/HTTPS]] for HTTPS/SSL Cert Configuration
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9