mirror of
https://github.com/ajnart/homarr.git
synced 2025-11-16 10:16:20 +01:00
🎨 Added troubleshoot steps + external address "/"
This commit is contained in:
@@ -20,6 +20,8 @@
|
|||||||
"lines": {
|
"lines": {
|
||||||
"nothingAfterPort": "You should, in most if not all cases, not input anything after the port, even the '/admin' for pihole.",
|
"nothingAfterPort": "You should, in most if not all cases, not input anything after the port, even the '/admin' for pihole.",
|
||||||
"protocolCheck": "Always make sure that the URL is preceded by http or https, and to make sure you are using the right one.",
|
"protocolCheck": "Always make sure that the URL is preceded by http or https, and to make sure you are using the right one.",
|
||||||
|
"preferIP": "It is recommended to use the direct ip of the machine or container you are trying to communicate with.",
|
||||||
|
"wget": "To make sure that homarr can communicate with the other apps, make sure to wget/curl/ping the app's IP:port.",
|
||||||
"iframe": "When it comes to iframes, those should always be using the same protocol (http/s) as Homarr.",
|
"iframe": "When it comes to iframes, those should always be using the same protocol (http/s) as Homarr.",
|
||||||
"clearCache": "Some informations are registered in cache, so an integration might not work unless you clear the cache in Homarr's general options."
|
"clearCache": "Some informations are registered in cache, so an integration might not work unless you clear the cache in Homarr's general options."
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -92,7 +92,6 @@ export const EditAppModal = ({
|
|||||||
}
|
}
|
||||||
|
|
||||||
values.url = removeTrailingSlash(values.url);
|
values.url = removeTrailingSlash(values.url);
|
||||||
values.behaviour.externalUrl = removeTrailingSlash(values.behaviour.externalUrl);
|
|
||||||
|
|
||||||
updateConfig(
|
updateConfig(
|
||||||
configName,
|
configName,
|
||||||
|
|||||||
@@ -20,6 +20,8 @@ export const GeneralTab = ({ form, openTab }: GeneralTabProps) => {
|
|||||||
const commonMistakes = [
|
const commonMistakes = [
|
||||||
t('general.internalAddress.troubleshoot.lines.nothingAfterPort'),
|
t('general.internalAddress.troubleshoot.lines.nothingAfterPort'),
|
||||||
t('general.internalAddress.troubleshoot.lines.protocolCheck'),
|
t('general.internalAddress.troubleshoot.lines.protocolCheck'),
|
||||||
|
t('general.internalAddress.troubleshoot.lines.preferIP'),
|
||||||
|
t('general.internalAddress.troubleshoot.lines.wget'),
|
||||||
t('general.internalAddress.troubleshoot.lines.iframe'),
|
t('general.internalAddress.troubleshoot.lines.iframe'),
|
||||||
t('general.internalAddress.troubleshoot.lines.clearCache'),
|
t('general.internalAddress.troubleshoot.lines.clearCache'),
|
||||||
];
|
];
|
||||||
|
|||||||
Reference in New Issue
Block a user