Skip to content

Commit 0e5fe51

Browse files
committed
Added configurabe https redirect code in case a ssl certificate exists
old default: 302 temporary redirect new default: 301 permanent redirect The default code can be changed in application.properties, config value haproxy.httpsRedirectCode
1 parent cf03714 commit 0e5fe51

File tree

7 files changed

+35
-7
lines changed

7 files changed

+35
-7
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ As a result the generated backend section inside haproxy.cfg will look like:
180180
```
181181
backend agiprx_123_api
182182
timeout server 240000
183-
redirect scheme https if !{ ssl_fc } { req.hdr(host),lower,map_str(/etc/haproxy/domain2cert.map) -m found }
183+
redirect scheme https code 301 if !{ ssl_fc } { req.hdr(host),lower,map_str(/etc/haproxy/domain2cert.map) -m found }
184184
server agiprx-server.my.tld_agiprx-api [::1]:8002
185185
```
186186

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>de.agitos</groupId>
66
<artifactId>agiprx</artifactId>
7-
<version>2.3</version>
7+
<version>2.4</version>
88
<name>Agitos Proxy Tool</name>
99
<description>HAProxy- und SSH-Proxy-Konfiguration</description>
1010
<packaging>jar</packaging>

src/main/java/de/agitos/agiprx/AgiPrx.java

+2
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@
6161
import de.agitos.agiprx.executor.NonInteractiveProjectExecutor;
6262
import de.agitos.agiprx.executor.ProjectExecutor;
6363
import de.agitos.agiprx.executor.UserExecutor;
64+
import de.agitos.agiprx.output.HAProxyBackendFormatter;
6465
import de.agitos.agiprx.util.Assert;
6566
import de.agitos.agiprx.util.EmailSender;
6667
import de.agitos.agiprx.util.UserContext;
@@ -133,6 +134,7 @@ private AgiPrx() throws IOException {
133134
diList.add(new DomainDao());
134135
diList.add(new DomainIpChecker());
135136
diList.add(new EmailSender());
137+
diList.add(new HAProxyBackendFormatter());
136138
diList.add(new HAProxyLesslBackendProcessor());
137139
diList.add(new HAProxyProcessor());
138140
diList.add(new HostDao());

src/main/java/de/agitos/agiprx/bean/processor/HAProxyProcessor.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ private void generateAndCheckConfigFile(List<Project> allProjects)
214214
haproxyLesslBackendProcessor.generateLesslBackend(buf);
215215

216216
// append main config from agiprx db (backend sections only)
217-
HAProxyBackendFormatter backendFormatter = new HAProxyBackendFormatter();
217+
HAProxyBackendFormatter backendFormatter = HAProxyBackendFormatter.getBean();
218218

219219
for (Project project : allProjects) {
220220

src/main/java/de/agitos/agiprx/model/Backend.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -154,8 +154,7 @@ public String toStringRecursive(String linePrefix, int maxTotalWidth) {
154154
} else if (this.getBackendContainers().size() == 0) {
155155
buf.append(String.format(linePrefix + "Warning: no containers assigned, backend is non-functional."));
156156
} else {
157-
HAProxyBackendFormatter backendFormatter = new HAProxyBackendFormatter();
158-
backendFormatter.formatBackend(this, buf, linePrefix);
157+
HAProxyBackendFormatter.getBean().formatBackend(this, buf, linePrefix);
159158
}
160159

161160
// add domain info

src/main/java/de/agitos/agiprx/output/HAProxyBackendFormatter.java

+26-2
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,34 @@
1818

1919
import com.mysql.cj.util.StringUtils;
2020

21+
import de.agitos.agiprx.DependencyInjector;
22+
import de.agitos.agiprx.bean.Config;
2123
import de.agitos.agiprx.bean.processor.HAProxyProcessor;
2224
import de.agitos.agiprx.model.Backend;
2325
import de.agitos.agiprx.model.BackendContainer;
26+
import de.agitos.agiprx.util.Assert;
2427

25-
public class HAProxyBackendFormatter {
28+
public class HAProxyBackendFormatter implements DependencyInjector {
29+
30+
private static HAProxyBackendFormatter BEAN;
31+
32+
private Integer haProxyHttpsRedirectCode;
33+
34+
public HAProxyBackendFormatter() {
35+
36+
Assert.singleton(this, BEAN);
37+
BEAN = this;
38+
39+
haProxyHttpsRedirectCode = Config.getBean().getInteger("haproxy.httpsRedirectCode", 301);
40+
}
41+
42+
@Override
43+
public void postConstruct() {
44+
}
45+
46+
public static HAProxyBackendFormatter getBean() {
47+
return BEAN;
48+
}
2649

2750
public void formatBackend(Backend backend, StringBuilder buf) {
2851
formatBackend(backend, buf, "");
@@ -68,7 +91,8 @@ public void formatBackend(Backend backend, StringBuilder buf, String linePrefix)
6891
}
6992

7093
private void addConditionalSSLRedirect(StringBuilder buf, String linePrefix) {
71-
buf.append(linePrefix).append("\t").append("redirect scheme https if !{ ssl_fc } ");
94+
buf.append(linePrefix).append("\t").append("redirect scheme https code ").append(haProxyHttpsRedirectCode)
95+
.append(" if !{ ssl_fc } ");
7296
buf.append("{ req.hdr(host),lower,map_str(")
7397
.append(HAProxyProcessor.CONFIG_PATH + HAProxyProcessor.DOMAIN_TO_CERT_FILE).append(") -m found }")
7498
.append("\n");

src/main/resources/application.properties.tpl

+3
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,9 @@ domain.trustedIps=1.2.3.4
4141
# HAProxy reload command
4242
haproxy.reloadCommand=/usr/bin/systemctl reload haproxy
4343

44+
# HAProxy redirect code http -> https: 301 (default) or 302
45+
haproxy.httpsRedirectCode=301
46+
4447
# informative SSH proxy domainname and port for end-user notifications
4548
proxy.domainname=proxy.example.org
4649
proxy.port=2222

0 commit comments

Comments
 (0)