Files
runtipi-appstore/apps/nginx/config.json
Gui-Gos 9e80ff91c3
Some checks failed
Test / test (push) Has been cancelled
fix(nginx): align id and service name with folder name
- id: nginx-custom -> nginx (must match folder name for Runtipi discovery)
- tipiVersion: 1 -> tipi_version: 2 (correct key name and version)
- Removed min_tipi_version and $schema fields
- Service name: nginx-custom -> nginx

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-12 11:08:50 +01:00

27 lines
774 B
JSON

{
"name": "Nginx",
"id": "nginx",
"available": true,
"short_desc": "Serveur web Nginx avec configuration personnalisable",
"author": "Nginx Inc.",
"port": 8080,
"exposable": true,
"dynamic_config": true,
"version": "1.0.0",
"tipi_version": 2,
"categories": ["utilities", "network"],
"description": "Nginx est un serveur web haute performance avec des volumes montés pour la configuration et le contenu des sites.",
"website": "https://nginx.org",
"supported_architectures": ["amd64", "arm64"],
"form_fields": [
{
"type": "text",
"label": "Nom du serveur (server_name)",
"hint": "Ex: monsite.local ou localhost",
"required": false,
"env_variable": "NGINX_SERVER_NAME",
"default": "localhost"
}
]
}