mirror of
				https://github.com/Frooodle/Stirling-PDF.git
				synced 2025-11-01 01:21:18 +01:00 
			
		
		
		
	Merge pull request #182 from IXEguy/visibility_fix
Change Visability to Visibility
This commit is contained in:
		
						commit
						7fda51a0c9
					
				@ -75,7 +75,7 @@ docker run -d \
 | 
			
		||||
  -e APP_HOME_NAME="Stirling PDF" \
 | 
			
		||||
  -e APP_HOME_DESCRIPTION="Your locally hosted one-stop-shop for all your PDF needs." \
 | 
			
		||||
  -e APP_NAVBAR_NAME="Stirling PDF" \
 | 
			
		||||
  -e ALLOW_GOOGLE_VISABILITY="true" \
 | 
			
		||||
  -e ALLOW_GOOGLE_VISIBILITY="true" \
 | 
			
		||||
  -e APP_ROOT_PATH="/" \
 | 
			
		||||
  -e APP_LOCALE="en_GB" \
 | 
			
		||||
```
 | 
			
		||||
@ -96,7 +96,7 @@ services:
 | 
			
		||||
#      APP_HOME_DESCRIPTION: Your locally hosted one-stop-shop for all your PDF needs.
 | 
			
		||||
#      APP_NAVBAR_NAME: Stirling PDF
 | 
			
		||||
#      APP_ROOT_PATH: /
 | 
			
		||||
#      ALLOW_GOOGLE_VISABILITY: true
 | 
			
		||||
#      ALLOW_GOOGLE_VISIBILITY: true
 | 
			
		||||
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
@ -134,7 +134,7 @@ If running Java directly, you can also pass these as properties using -D argumen
 | 
			
		||||
 | 
			
		||||
Using the same method you can also change 
 | 
			
		||||
- The default language by providing APP_LOCALE with values like de-DE fr-FR or ar-AR to select your default language (Will always default to English on invalid locale)
 | 
			
		||||
- Enable/Disable search engine visablility with ALLOW_GOOGLE_VISABILITY with true / false values. Default disable visability.
 | 
			
		||||
- Enable/Disable search engine visiblility with ALLOW_GOOGLE_VISIBILITY with true / false values. Default disable visibility.
 | 
			
		||||
- Change root URI for Stirling-PDF ie change server.com/ to server.com/pdf-app by running APP_ROOT_PATH as pdf-app
 | 
			
		||||
 | 
			
		||||
## API
 | 
			
		||||
 | 
			
		||||
@ -80,9 +80,9 @@ public class GeneralWebController {
 | 
			
		||||
    @ResponseBody
 | 
			
		||||
    @Hidden
 | 
			
		||||
    public String getRobotsTxt() {
 | 
			
		||||
        String allowGoogleVisibility = System.getProperty("ALLOW_GOOGLE_VISABILITY");
 | 
			
		||||
        String allowGoogleVisibility = System.getProperty("ALLOW_GOOGLE_VISIBILITY");
 | 
			
		||||
        if (allowGoogleVisibility == null)
 | 
			
		||||
            allowGoogleVisibility = System.getenv("ALLOW_GOOGLE_VISABILITY");
 | 
			
		||||
            allowGoogleVisibility = System.getenv("ALLOW_GOOGLE_VISIBILITY");
 | 
			
		||||
        if (allowGoogleVisibility == null)
 | 
			
		||||
            allowGoogleVisibility = "false";
 | 
			
		||||
        if (Boolean.parseBoolean(allowGoogleVisibility)) {
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user