Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[fix] Fixed URL for downloading CRL from OpenWISP #338

Merged
merged 3 commits into from
Aug 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion images/common/utils.sh
Original file line number Diff line number Diff line change
Expand Up @@ -237,5 +237,5 @@ function openvpn_config_download {

function crl_download {
export CAid=$(psql -qAtc "SELECT ca_id FROM config_vpn where name='${VPN_NAME}';")
wget -qO revoked.crl --no-check-certificate ${DASHBOARD_INTERNAL}/admin/pki/ca/${CAid}.crl
wget -qO revoked.crl --no-check-certificate ${DASHBOARD_INTERNAL}/admin/pki/ca/x509/ca/${CAid}.crl
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We will need to update this once openwisp/django-x509#147 is merged.

}
2 changes: 1 addition & 1 deletion images/openwisp_dashboard/openvpn.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"mute_replay_warnings": false,
"secret": "",
"reneg_sec": 0,
"tls_timeout": 0,
"tls_timeout": 2,
"tls_cipher": "",
"remote_cert_tls": "",
"float": false,
Expand Down