Skip to content

Commit

Permalink
changed SSH auth to password instead of priv-key to stay off disk (ev…
Browse files Browse the repository at this point in the history
…en tmp disk) on LInux. Added Windows proxy support to PP. Linux connect back command has problems with the password still
  • Loading branch information
SpenGietz committed Aug 26, 2018
1 parent 3b7b13f commit 135b3c4
Show file tree
Hide file tree
Showing 4 changed files with 135 additions and 174 deletions.
2 changes: 1 addition & 1 deletion core/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ class ProxySettings(Base, ModelUpdateMixin):
port = Column(Integer, nullable=False, default=80)
listening = Column(Boolean, nullable=False, default=False)
ssh_username = Column(Text, nullable=True, default='')
ssh_priv_key = Column(Text, nullable=True, default='')
ssh_password = Column(Text, nullable=True, default='')

@classmethod
def get_proxy_settings(cls, database):
Expand Down
Loading

0 comments on commit 135b3c4

Please sign in to comment.