Added nginx redirect
This commit is contained in:
parent
a75284d9c2
commit
03e494f722
|
|
@ -0,0 +1,31 @@
|
||||||
|
{
|
||||||
|
"captainVersion": "2",
|
||||||
|
"documentation": "Taken from https://github.com/caprover/nginx-redirect",
|
||||||
|
"displayName": "Nginx Reverse Proxy",
|
||||||
|
"description": "A simple nginx image preloaded with redirect config that allows you to redirect to another URL. Useful for domain alias creation.",
|
||||||
|
"dockerCompose": {
|
||||||
|
"version": "3.3",
|
||||||
|
"services": {
|
||||||
|
"$$cap_appname": {
|
||||||
|
"image": "caprover/nginx-redirect:latest",
|
||||||
|
"restart": "always",
|
||||||
|
"environment": {
|
||||||
|
"RETURN_LOCATION": "return 301 $$cap_redirect_url$request_uri;"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"instructions": {
|
||||||
|
"start": "This is a very simply redirect nginx image. It redirects all HTTP requests to the HTTP address that you define. It's useful when you want to redirect all traffic from www.example.com to example.com, see more details here: https://github.com/caprover/nginx-redirect",
|
||||||
|
"end": "Reverse redirect is deployed and available as $$cap_appname"
|
||||||
|
},
|
||||||
|
"variables": [
|
||||||
|
{
|
||||||
|
"id": "$$cap_redirect_url",
|
||||||
|
"label": "Redirect address",
|
||||||
|
"description": "For example use https://caprover.com to redirect all request to CapRover.",
|
||||||
|
"defaultValue": "https://caprover.com",
|
||||||
|
"validRegex": "/^(http:\\/\\/|https:\\/\\/)\\S*$/"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
Binary file not shown.
|
After Width: | Height: | Size: 6.2 KiB |
Loading…
Reference in New Issue