mirror of
				https://github.com/juanfont/headscale.git
				synced 2025-11-01 05:27:44 +09:00 
			
		
		
		
	
		
			
				
	
	
		
			42 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Markdown
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Markdown
		
	
	
	
	
	
| # Configuration
 | |
| 
 | |
| - Headscale loads its configuration from a YAML file
 | |
| - It searches for `config.yaml` in the following paths:
 | |
|     - `/etc/headscale`
 | |
|     - `$HOME/.headscale`
 | |
|     - the current working directory
 | |
| - To load the configuration from a different path, use:
 | |
|     - the command line flag `-c`, `--config`
 | |
|     - the environment variable `HEADSCALE_CONFIG`
 | |
| - Validate the configuration file with: `headscale configtest`
 | |
| 
 | |
| !!! example "Get the [example configuration from the GitHub repository](https://github.com/juanfont/headscale/blob/main/config-example.yaml)"
 | |
| 
 | |
|     Always select the [same GitHub tag](https://github.com/juanfont/headscale/tags) as the released version you use to
 | |
|     ensure you have the correct example configuration. The `main` branch might contain unreleased changes.
 | |
| 
 | |
|     === "View on GitHub"
 | |
| 
 | |
|         * Development version: <https://github.com/juanfont/headscale/blob/main/config-example.yaml>
 | |
|         * Version {{ headscale.version }}: <https://github.com/juanfont/headscale/blob/v{{ headscale.version }}/config-example.yaml>
 | |
| 
 | |
|     === "Download with `wget`"
 | |
| 
 | |
|         ```shell
 | |
|         # Development version
 | |
|         wget -O config.yaml https://raw.githubusercontent.com/juanfont/headscale/main/config-example.yaml
 | |
| 
 | |
|         # Version {{ headscale.version }}
 | |
|         wget -O config.yaml https://raw.githubusercontent.com/juanfont/headscale/v{{ headscale.version }}/config-example.yaml
 | |
|         ```
 | |
| 
 | |
|     === "Download with `curl`"
 | |
| 
 | |
|         ```shell
 | |
|         # Development version
 | |
|         curl -o config.yaml https://raw.githubusercontent.com/juanfont/headscale/main/config-example.yaml
 | |
| 
 | |
|         # Version {{ headscale.version }}
 | |
|         curl -o config.yaml https://raw.githubusercontent.com/juanfont/headscale/v{{ headscale.version }}/config-example.yaml
 | |
|         ```
 |