2024-10-23 10:58:08 +02:00
- [Summary ](https://forge.cloud.silique.fr/stove/rougail-tutorials/src/branch/1.1/README.md )
2024-10-23 10:58:24 +02:00
- [[tutorial 015] Family in "shorthand" mode](https://forge.cloud.silique.fr/stove/rougail-tutorials/src/commit/v1.1_015/README.md) ([diff](https://forge.cloud.silique.fr/stove/rougail-tutorials/compare/v1.1_015~1..v1.1_015))
2024-10-23 10:58:08 +02:00
2024-10-23 10:58:24 +02:00
# [tutorial 016] Family in "shorthand" mode
2024-10-23 10:58:08 +02:00
2024-10-23 10:58:24 +02:00
[View the diff ](https://forge.cloud.silique.fr/stove/rougail-tutorials/compare/v1.1_016~1..v1.1_016 )
2024-10-23 10:58:08 +02:00
2024-10-23 10:58:06 +02:00
## Screenshot
< img src = "firefox.png" width = 50% height = 50% alt = "Firefox Proxy setting" / >
## Structure
2024-10-23 10:58:08 +02:00
### firefox/00-proxy.yml
```yml
---
2024-10-23 10:58:10 +02:00
proxy_mode:
2024-10-23 10:58:11 +02:00
description: Configure Proxy Access to the Internet
2024-10-23 10:58:14 +02:00
choices:
- No proxy
- Auto-detect proxy settings for this network
- Use system proxy settings
- Manual proxy configuration
- Automatic proxy configuration URL
2024-10-23 10:58:13 +02:00
default: No proxy
2024-10-23 10:58:08 +02:00
```
2024-10-23 10:58:17 +02:00
### firefox/10-manual.yml
2024-10-23 10:58:10 +02:00
```yml
---
2024-10-23 10:58:17 +02:00
manual:
description: Manual proxy configuration
type: family
2024-10-23 10:58:18 +02:00
disabled:
variable: proxy_mode
when_not: 'Manual proxy configuration'
2024-10-23 10:58:10 +02:00
2024-10-23 10:58:20 +02:00
http_proxy:
description: HTTP Proxy
type: family
2024-10-23 10:58:22 +02:00
address:
description: HTTP address
type: domainname
2024-10-23 10:58:23 +02:00
params:
allow_ip: true
2024-10-23 10:58:22 +02:00
2024-10-23 10:58:24 +02:00
port:
description: HTTP Port
type: port
default: 8080
2024-10-23 10:58:10 +02:00
```
2024-10-23 10:58:17 +02:00
### Generated documentation
2024-10-23 10:58:10 +02:00
```console
2024-10-23 10:58:17 +02:00
foo@bar:~$ rougail -v 1.1 -m firefox/ -o doc -do github
2024-10-23 10:58:10 +02:00
```
2024-10-23 10:58:17 +02:00
### Variables
2024-10-23 10:58:10 +02:00
2024-10-23 10:58:24 +02:00
| Variable | Description |
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| **proxy_mode** < br /> [`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `mandatory` | Configure Proxy Access to the Internet.< br /> **Choices**: < br /> - No proxy ← (default)< br /> - Auto-detect proxy settings for this network< br /> - Use system proxy settings< br /> - Manual proxy configuration< br /> - Automatic proxy configuration URL |
2024-10-23 10:58:22 +02:00
#### Manual proxy configuration
_`disabled`_
**Disabled**: proxy_mode.
##### HTTP Proxy
2024-10-23 10:58:24 +02:00
| Variable | Description |
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| **manual.http_proxy.address** < br /> [`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `mandatory` | HTTP address.< br /> **Validator**: the domain name can be an IP |
| **manual.http_proxy.port** < br /> [`port`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `mandatory` | HTTP Port.< br /> **Default**: 8080 |
2024-10-23 10:58:22 +02:00
2024-10-23 10:58:24 +02:00
- [[tutorial 017] Family in "shorthand" mode](https://forge.cloud.silique.fr/stove/rougail-tutorials/src/commit/v1.1_017/README.md) ([diff](https://forge.cloud.silique.fr/stove/rougail-tutorials/compare/v1.1_017~1..v1.1_017))