mirror of
https://github.com/ComputerScienceHouse/proxstar.git
synced 2025-02-12 13:01:51 +00:00
Merge pull request #200 from bobbykdhan/master
Accept ed25519 and other common SSH Keys
This commit is contained in:
commit
3bad35d53b
1 changed files with 2 additions and 2 deletions
|
@ -223,7 +223,7 @@ $("#create-vm").click(function(){
|
|||
const max_cpu = $(this).data('max_cpu');
|
||||
const max_mem = $(this).data('max_mem');
|
||||
const max_disk = $(this).data('max_disk');
|
||||
var ssh_regex = new RegExp("ssh-rsa AAAA[0-9A-Za-z+/]+[=]{0,3}( [^@]+@[^@]+)?")
|
||||
var ssh_regex = new RegExp("ssh-[a-z0-9]+ AAAA[0-9A-Za-z+/]+[=]{0,3}( [^@]+@[^@]+)?");
|
||||
var disk = document.getElementById('disk').value;
|
||||
fetch(`/template/${template}/disk`, {
|
||||
credentials: 'same-origin',
|
||||
|
|
Loading…
Reference in a new issue