Files
rproxy/README.md

39 lines
1.0 KiB
Markdown
Raw Permalink Normal View History

2024-10-04 01:22:05 +03:00
# PROXY
## Content
* Reverse proxy
* HTTPS file share
## Installation
```yml
target_host: Enter FQDN or IP Address of target host
2025-10-09 23:26:06 +03:00
rproxy_install: Install rproxy and https repo if checked
2024-10-04 01:22:05 +03:00
config_add: Will config be created
rproxy_service_name: Server/service name without domain suffix
rproxy_service_port: Port to redirect the request to
rproxy_service_address: Address to redirect the request to
Example:
domain: olsson.ul
jenkins_host: http://10.10.10.1:8080/
rproxy_service_name: jenkins
rproxy_service_port: 8080
rproxy_service_address: 10.10.10.1
# After adding alias jenkins.olsson.ul => rproxy.olsson.ul
result_address: https://jenkins.olsson.ul/
```
## Reverse Proxy
Allows redirecting requests based on fqdn to the required address and ports with ssl certificate substitution
## HTTPS repository
Would be installed with rproxy service. Hosted on port 9000. \
Files should be stored in /opt/rproxy/repo/ to be shared.
2025-10-09 23:26:06 +03:00
Put file in repo
2024-10-04 01:22:05 +03:00
```bash
2025-10-09 23:26:06 +03:00
curl -T kafka_4.1.tar https://rproxy.olsson.ul:9000/podman/kafka/4.1/kafka_4.1.tar -k
```