Proxmox Without SSL

melona380

Member
Aug 11, 2015
4
0
21
How can I disable SSL on proxmox 3.4. I know that this is less secure, but for my purposes I need an HTTP only connection. How can I recofigure pveproxy to not use SSL?
 
Would changing the pve proxy config file from

ssl => {
# Note: older versions are considered insecure, for example
# search for "Poodle"-Attac
method => 'tlsv1',
sslv2 => 0,
sslv3 => 0,
cipher_list => $proxyconf->{CIPHERS} || 'HIGH:MEDIUM:!aNULL:!MD5',
key_file => '/etc/pve/local/pve-ssl.key',
cert_file => '/etc/pve/local/pve-ssl.pem',
},

To THIS Work in successfully shuting off SSL

ssl => {
# Note: older versions are considered insecure, for example
# search for "Poodle"-Attac
method => 0,
sslv2 => 0,
sslv3 => 0,
cipher_list => $proxyconf->{CIPHERS} || 'HIGH:MEDIUM:!aNULL:!MD5',
key_file => '/etc/pve/local/pve-ssl.key',
cert_file => '/etc/pve/local/pve-ssl.pem',
},
 
Really really not recommended, exposes the whole API (with access to the storage, and every other resource). The only thing it changes for you is that your system becomes more vulnerable. Any problems with the SSL connection?
 
Really really not recommended, exposes the whole API (with access to the storage, and every other resource). The only thing it changes for you is that your system becomes more vulnerable. Any problems with the SSL connection?


I have a problem, but noone is replying me since 2 days!