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