Compare commits
No commits in common. "c077fa44051c4b84f09be0acd335b1ca6a903270" and "35897517731ed623aa8ee79d447bef0b724017b9" have entirely different histories.
c077fa4405
...
3589751773
|
@ -19,12 +19,11 @@ dns-rest-api1.sunet.se:
|
||||||
dns:
|
dns:
|
||||||
dns::knotdns:
|
dns::knotdns:
|
||||||
dns::apache2:
|
dns::apache2:
|
||||||
dnsapiport = '8443'
|
|
||||||
sunet::certbot::acmed:
|
sunet::certbot::acmed:
|
||||||
sunet::baas2:
|
sunet::baas2:
|
||||||
nodename: 7B9DBFE1F4D1
|
nodename: 7B9DBFE1F4D1
|
||||||
backup_dirs:
|
backup_dirs:
|
||||||
- '/etc/'
|
- '/etc'
|
||||||
- '/var/'
|
- '/var/'
|
||||||
exclude_list:
|
exclude_list:
|
||||||
- '/.../dsmsched.log'
|
- '/.../dsmsched.log'
|
||||||
|
|
|
@ -1,6 +1,4 @@
|
||||||
class dns::apache2 (
|
class dns::apache2 {
|
||||||
$dnsapiport = '8443',
|
|
||||||
){
|
|
||||||
|
|
||||||
package { ['apache2', 'libapache2-mod-qos', 'python3-certbot-apache']:
|
package { ['apache2', 'libapache2-mod-qos', 'python3-certbot-apache']:
|
||||||
ensure => installed,
|
ensure => installed,
|
||||||
|
@ -36,6 +34,6 @@ class dns::apache2 (
|
||||||
rule => "add rule inet filter input tcp dport 80 counter accept comment \"allow-apache2-http\""
|
rule => "add rule inet filter input tcp dport 80 counter accept comment \"allow-apache2-http\""
|
||||||
}
|
}
|
||||||
sunet::nftables::rule { 'apache-https':
|
sunet::nftables::rule { 'apache-https':
|
||||||
rule => "add rule inet filter input tcp dport $dnsapiport counter accept comment \"allow-apache2-https\""
|
rule => "add rule inet filter input tcp dport 443 counter accept comment \"allow-apache2-https\""
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [END,NE,R=permanent]
|
RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [END,NE,R=permanent]
|
||||||
</VirtualHost>
|
</VirtualHost>
|
||||||
<IfModule mod_ssl.c>
|
<IfModule mod_ssl.c>
|
||||||
<VirtualHost *:<%= @dnsapiport %>>
|
<VirtualHost *:443>
|
||||||
ErrorLog ${APACHE_LOG_DIR}/error.log
|
ErrorLog ${APACHE_LOG_DIR}/error.log
|
||||||
CustomLog ${APACHE_LOG_DIR}/access.log combined
|
CustomLog ${APACHE_LOG_DIR}/access.log combined
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue