mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 00:20:25 +08:00 
			
		
		
		
	Improve AppUrl/ROOT_URL checking (#22836)
After some PRs: * #21986 * #22795 * #22808 * #22831 * #22839 Users won't be affected by the ROOT_URL problem in most cases. Close #19345 This PR improves AppUrl/ROOT_URL checking, only check it on the admin page, and the message is also updated. Feel free to suggest about more English-native messages. 
This commit is contained in:
		@@ -381,9 +381,6 @@ export function checkAppUrl() {
 | 
			
		||||
  if (curUrl.startsWith(appUrl) || `${curUrl}/` === appUrl) {
 | 
			
		||||
    return;
 | 
			
		||||
  }
 | 
			
		||||
  if (document.querySelector('.page-content.install')) {
 | 
			
		||||
    return; // no need to show the message on the installation page
 | 
			
		||||
  }
 | 
			
		||||
  showGlobalErrorMessage(`Your ROOT_URL in app.ini is ${appUrl} but you are visiting ${curUrl}
 | 
			
		||||
You should set ROOT_URL correctly, otherwise the web may not work correctly.`);
 | 
			
		||||
  showGlobalErrorMessage(`Your ROOT_URL in app.ini is "${appUrl}", it's unlikely matching the site you are visiting.
 | 
			
		||||
Mismatched ROOT_URL config causes wrong URL links for web UI/mail content/webhook notification.`);
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user