New domain options and properties for Debian Bookworm #1

Closed
hsh-timotheuspokorra wants to merge 41 commits from TP-202311-vhost-bookworm into rel_4.0
2 changed files with 3 additions and 3 deletions
Showing only changes of commit e57a3d7c84 - Show all commits

View File

@ -57,7 +57,7 @@ public class DomainRemote extends AbstractRemote {
resultMap.put("passengernodejs", passengernodejs);
final String passengerruby = dom.getPassengerRuby();
resultMap.put("passengerruby", passengerruby);
final String passengerfcgiphpbin = dom.getPassengerFcgiPhpBin();
final String passengerfcgiphpbin = dom.getFcgiPhpBin();
resultMap.put("passengerfcgiphpbin", passengerfcgiphpbin);
}

View File

@ -161,8 +161,8 @@ public class JsonPillarServlet extends HttpServlet {
if (passengerRuby.length() > 0) {
writer.println(" , \"passengerruby\": \"" + passengerRuby + "\"");
}
if (fcgPhpBin.length() > 0) {
writer.println(" , \"fcgiphpbin\": \"" + fcgPhpBin + "\"");
if (fcgiPhpBin.length() > 0) {
writer.println(" , \"fcgiphpbin\": \"" + fcgiPhpBin + "\"");
}
writer.println(" }");
}