Skip to content

Commit 931964f

Browse files
authored
Merge pull request #888 from logzio/update-new-certificates
new certificates
2 parents 2f4bec5 + 6303994 commit 931964f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+66
-66
lines changed

docs/_include/log-shipping/certificate.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ For HTTPS shipping, download the Logz.io public certificate to your certificate
44

55

66
```shell
7-
sudo curl https://raw.githubusercontent.com/logzio/public-certificates/master/AAACertificateServices.crt --create-dirs -o /etc/pki/tls/certs/COMODORSADomainValidationSecureServerCA.crt
7+
sudo curl https://raw.githubusercontent.com/logzio/public-certificates/master/AAACertificateServices.crt --create-dirs -o /etc/pki/tls/certs/AAACertificateServices.crt
88
```

docs/_include/log-shipping/syslog-filebeat.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,5 @@
2727
output.logstash:
2828
hosts: ["<<LISTENER-HOST>>:5015"]
2929
ssl:
30-
certificate_authorities: ['/etc/pki/tls/certs/COMODORSADomainValidationSecureServerCA.crt']
30+
certificate_authorities: ['/etc/pki/tls/certs/AAACertificateServices.crt']
3131
```

docs/_include/log-shipping/validate-yaml.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
When you're done adding your sources, click **Make the config file** to download it.
44

5-
You can compare it to our [sample configuration](https://raw.githubusercontent.com/logzio/logz-docs/master/shipping-config-samples/logz-filebeat-config.yml) if you have questions.
5+
You can compare it to our [sample configuration](https://raw.githubusercontent.com/logzio/documentation/refs/heads/master/docs/_include/general-shipping/shipping-config-samples/logz-filebeat-config.yml) if you have questions.
66

77
Validate the file using a YAML validator tool, such as ([Yamllint.com](http://www.yamllint.com/).

docs/shipping/Access-Management/active-directory.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Active Directory is a directory service developed by Microsoft for Windows domai
2626

2727
Download the
2828
[Logz.io public certificate]({@include: ../../_include/log-shipping/certificate-path.md})
29-
to `C:\ProgramData\Winlogbeat\COMODORSADomainValidationSecureServerCA.crt`
29+
to `C:\ProgramData\Winlogbeat\AAACertificateServices.crt`
3030
on your machine.
3131

3232
### Configure Windows applications as an input
@@ -93,7 +93,7 @@ Winlogbeat can have one output only, so remove any other `output` entries.
9393
output.logstash:
9494
hosts: ["<<LISTENER-HOST>>:5015"]
9595
ssl:
96-
certificate_authorities: ['C:\ProgramData\Winlogbeat\COMODORSADomainValidationSecureServerCA.crt']
96+
certificate_authorities: ['C:\ProgramData\Winlogbeat\AAACertificateServices.crt']
9797
```
9898

9999
### Restart Winlogbeat

docs/shipping/CI-CD/gitlab.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ Remove all other outputs.
193193
output.logstash:
194194
hosts: ["<<LISTENER-HOST>>:5015"]
195195
ssl:
196-
certificate_authorities: ['/etc/pki/tls/certs/COMODORSADomainValidationSecureServerCA.crt']
196+
certificate_authorities: ['/etc/pki/tls/certs/AAACertificateServices.crt']
197197
```
198198

199199
### Start Filebeat

docs/shipping/CI-CD/jenkins.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ Remove all other outputs.
106106
output.logstash:
107107
hosts: ["<<LISTENER-HOST>>:5015"]
108108
ssl:
109-
certificate_authorities: ['/etc/pki/tls/certs/COMODORSADomainValidationSecureServerCA.crt']
109+
certificate_authorities: ['/etc/pki/tls/certs/AAACertificateServices.crt']
110110
```
111111

112112
#### Start Filebeat

docs/shipping/CI-CD/puppet.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ Remove all other outputs.
167167
output.logstash:
168168
hosts: ["<<LISTENER-HOST>>:5015"]
169169
ssl:
170-
certificate_authorities: ['/etc/pki/tls/certs/COMODORSADomainValidationSecureServerCA.crt']
170+
certificate_authorities: ['/etc/pki/tls/certs/AAACertificateServices.crt']
171171
```
172172

173173
##### Start Filebeat

docs/shipping/Compute/apache-http-server.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ Remove all other outputs.
143143
output.logstash:
144144
hosts: ["<<LISTENER-HOST>>:5015"]
145145
ssl:
146-
certificate_authorities: ['/etc/pki/tls/certs/COMODORSADomainValidationSecureServerCA.crt']
146+
certificate_authorities: ['/etc/pki/tls/certs/AAACertificateServices.crt']
147147
```
148148
149149
### Start Filebeat

docs/shipping/Containers/oracle-cloud-infrastructure-container-engine-for-kubernetes.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -62,25 +62,25 @@ Run the relevant command for your type of deployment.
6262
##### Deploy the standard configuration
6363

6464
```shell
65-
kubectl apply -f https://raw.githubusercontent.com/logzio/logz-docs/master/shipping-config-samples/k8s-filebeat-oke.yaml -f https://raw.githubusercontent.com/logzio/logz-docs/master/shipping-config-samples/filebeat-standard-configuration.yaml
65+
kubectl apply -f https://raw.githubusercontent.com/logzio/documentation/refs/heads/master/docs/_include/general-shipping/shipping-config-samples/shipping-config-samples/k8s-filebeat-oke.yaml -f https://raw.githubusercontent.com/logzio/documentation/refs/heads/master/docs/_include/general-shipping/shipping-config-samples/filebeat-standard-configuration.yaml
6666
```
6767

6868
##### Deploy the standard configuration with Filebeat autodiscover enabled
6969

7070
Autodiscover allows you to adapt settings as changes happen. By defining configuration templates, the autodiscover subsystem can monitor services as they start running. See Elastic documentation to [learn more about Filebeat Autodiscover](https://www.elastic.co/guide/en/beats/filebeat/current/configuration-autodiscover.html).
7171

7272
```shell
73-
kubectl apply -f https://raw.githubusercontent.com/logzio/logz-docs/master/shipping-config-samples/k8s-filebeat-oke.yaml -f https://raw.githubusercontent.com/logzio/logz-docs/master/shipping-config-samples/filebeat-autodiscovery-configuration.yaml
73+
kubectl apply -f https://raw.githubusercontent.com/logzio/documentation/refs/heads/master/docs/_include/general-shipping/shipping-config-samples/k8s-filebeat-oke.yaml -f https://raw.githubusercontent.com/logzio/documentation/refs/heads/master/docs/_include/general-shipping/shipping-config-samples/filebeat-autodiscovery-configuration.yaml
7474
```
7575

7676
##### Deploy a custom configuration
7777

78-
If you want to apply your own custom configuration, download the standard `configmap.yaml` file from the [Logz.io GitHub repo](https://raw.githubusercontent.com/logzio/logz-docs/master/shipping-config-samples/filebeat-standard-configuration.yaml) and apply your changes. Make sure to keep the file structure unchanged.
78+
If you want to apply your own custom configuration, download the standard `configmap.yaml` file from the [Logz.io GitHub repo](https://raw.githubusercontent.com/logzio/documentation/refs/heads/master/docs/_include/general-shipping/shipping-config-samples/filebeat-standard-configuration.yaml) and apply your changes. Make sure to keep the file structure unchanged.
7979

8080
Run the following command to download the file:
8181

8282
```shell
83-
wget https://raw.githubusercontent.com/logzio/logz-docs/master/shipping-config-samples/filebeat-standard-configuration.yaml
83+
wget https://raw.githubusercontent.com/logzio/documentation/refs/heads/master/docs/_include/general-shipping/shipping-config-samples/filebeat-standard-configuration.yaml
8484
```
8585

8686
Apply your custom configuration to the parameters under `filebeat.yml` and only there. The filebeat.yml field contains a basic Filebeat configuration. You should not change the 'output' field (indicated in the example below). See Elastic documentation to [learn more about Filebeat configuration options](https://www.elastic.co/guide/en/beats/filebeat/current/configuring-howto-filebeat.html).
@@ -121,13 +121,13 @@ filebeat.yml: |-
121121
logstash:
122122
hosts: ["${LOGZIO_LOGS_LISTENER_HOST}:5015"]
123123
ssl:
124-
certificate_authorities: ['/etc/pki/tls/certs/SectigoRSADomainValidationSecureServerCA.crt']
124+
certificate_authorities: ['/etc/pki/tls/certs/AAACertificateServices.crt']
125125
```
126126

127127
Run the following to deploy your custom Filebeat configuration:
128128

129129
```shell
130-
kubectl apply -f https://raw.githubusercontent.com/logzio/logz-docs/master/shipping-config-samples/k8s-filebeat-oke.yaml -f <<Your-custom-configuration-file.yaml>>
130+
kubectl apply -f https://raw.githubusercontent.com/logzio/documentation/refs/heads/master/docs/_include/general-shipping/shipping-config-samples/k8s-filebeat-oke.yaml -f <<Your-custom-configuration-file.yaml>>
131131
```
132132
133133
#### Check Logz.io for your logs

docs/shipping/Database/mysql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ Remove all other outputs.
194194
output.logstash:
195195
hosts: ["<<LISTENER-HOST>>:5015"]
196196
ssl:
197-
certificate_authorities: ['/etc/pki/tls/certs/COMODORSADomainValidationSecureServerCA.crt']
197+
certificate_authorities: ['/etc/pki/tls/certs/AAACertificateServices.crt']
198198
```
199199

200200
#### Start Filebeat

0 commit comments

Comments
 (0)