 6d5172d18a
			
		
	
	6d5172d18a
	
	
	
		
			
			* first pass
* dependency shenanigans
* move blueprints
* few broken links
* change config the throw errors
* internal file edits
* fighting links
* remove sidebarDev
* fix subdomain
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
* fix relative URL
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
* fix mismatched package versions
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
* fix api reference build
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
* test tweak
* links hell
* more links hell
* links hell2
* yep last of the links
* last broken link fixed
* re-add cves
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
* add devdocs redirects
* add dir
* tweak netlify.toml
* move latest 2 CVES into dir
* fix links to moved cves
* typoed title fix
* fix link
* remove banner
* remove committed api docs
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space>
* integrations: remove version dropdown
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space>
* Update Makefile
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space>
* change doc links in web as well
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space>
* fix some more docs paths
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space>
* fix more docs paths
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space>
* ci: require ci-web.build for merging
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space>
* Revert "ci: require ci-web.build for merging"
This reverts commit b99a4842a9.
* remove sluf for Application
* put slug back in
* minor fix to trigger deploy
* Spelled out Documentation in menu bar
* remove image redirects...
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
* remove explicit index.md
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
* remove mdx first
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
* then remove .md
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
* add missing prefix
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space>
Co-authored-by: Tana M Berry <tana@goauthentik.com>
Co-authored-by: Jens Langhammer <jens@goauthentik.io>
Co-authored-by: Marc 'risson' Schmitt <marc.schmitt@risson.space>
		
	
		
			
				
	
	
		
			58 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			58 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| ### Custom CSS
 | |
| 
 | |
| To further modify the look of authentik, a custom CSS file can be created. Creating such a file is outside the scope of this document.
 | |
| 
 | |
| import Tabs from "@theme/Tabs";
 | |
| import TabItem from "@theme/TabItem";
 | |
| 
 | |
| <Tabs
 | |
|   defaultValue="docker-compose"
 | |
|   values={[
 | |
|     {label: 'docker-compose', value: 'docker-compose'},
 | |
|     {label: 'Kubernetes', value: 'kubernetes'},
 | |
|   ]}>
 | |
|   <TabItem value="docker-compose">
 | |
| Create a `docker-compose.override.yml` file and add this block to mount the custom CSS file:
 | |
| 
 | |
| ```yaml
 | |
| services:
 | |
|     server:
 | |
|         volumes:
 | |
|             - ./my-css-file.css:/web/dist/custom.css
 | |
| ```
 | |
| 
 | |
| Afterwards, run the upgrade commands from the latest release notes.
 | |
| 
 | |
|   </TabItem>
 | |
|   <TabItem value="kubernetes">
 | |
| Create a ConfigMap with your css file:
 | |
| 
 | |
| ```yaml
 | |
| apiVersion: v1
 | |
| kind: ConfigMap
 | |
| metadata:
 | |
|     name: authentik-custom-css
 | |
|     namespace: authentik
 | |
| data:
 | |
|     custom.css: |
 | |
|         ...
 | |
| ```
 | |
| 
 | |
| Then, in the helm chart add this to your `values.yaml` file:
 | |
| 
 | |
| ```yaml
 | |
| volumes:
 | |
|     - name: custom-css
 | |
|       configMap:
 | |
|           name: authentik-custom-css
 | |
| volumeMounts:
 | |
|     - name: custom-css
 | |
|       mountPath: /web/dist/custom.css
 | |
|       subPath: custom.css
 | |
| ```
 | |
| 
 | |
| Afterwards, run the upgrade commands from the latest release notes.
 | |
| 
 | |
|   </TabItem>
 | |
| </Tabs>
 |