mirror of
https://github.com/SoftEtherVPN/SoftEtherVPN.git
synced 2025-06-28 20:05:08 +03:00
hamcore: comment out <cert> and <key> in openvpn_sample.ovpn
This commit is contained in:
parent
d3e69d31cb
commit
b0016cbee0
@ -100,6 +100,12 @@ persist-key
|
|||||||
persist-tun
|
persist-tun
|
||||||
client
|
client
|
||||||
verb 3
|
verb 3
|
||||||
|
|
||||||
|
###############################################################################
|
||||||
|
# Authentication with credentials.
|
||||||
|
#
|
||||||
|
# Comment the line out in case you want to use the certificate authentication.
|
||||||
|
|
||||||
auth-user-pass
|
auth-user-pass
|
||||||
|
|
||||||
|
|
||||||
@ -117,21 +123,22 @@ $CA$
|
|||||||
|
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
# The client certificate file (dummy).
|
# Client certificate and key.
|
||||||
#
|
#
|
||||||
# In some implementations of OpenVPN Client software
|
# A pair of client certificate and private key is required in case you want to
|
||||||
# (for example: OpenVPN Client for iOS),
|
# use the certificate authentication.
|
||||||
# a pair of client certificate and private key must be included on the
|
#
|
||||||
# configuration file due to the limitation of the client.
|
# To enable it, uncomment the lines below.
|
||||||
# So this sample configuration file has a dummy pair of client certificate
|
# Paste your certificate in the <cert> block and the key in the <key> one.
|
||||||
# and private key as follows.
|
|
||||||
|
|
||||||
<cert>
|
|
||||||
$CERT$
|
|
||||||
</cert>
|
|
||||||
|
|
||||||
<key>
|
|
||||||
$KEY$
|
|
||||||
</key>
|
|
||||||
|
|
||||||
|
;<cert>
|
||||||
|
;-----BEGIN CERTIFICATE-----
|
||||||
|
;
|
||||||
|
;-----END CERTIFICATE-----
|
||||||
|
;</cert>
|
||||||
|
|
||||||
|
;<key>
|
||||||
|
;-----BEGIN RSA PRIVATE KEY-----
|
||||||
|
;
|
||||||
|
;-----END RSA PRIVATE KEY-----
|
||||||
|
;</key>
|
||||||
|
Loading…
Reference in New Issue
Block a user