Guest User

Untitled

a guest
Feb 14th, 2019
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.28 KB | None | 0 0
  1. chmod 600 ~/.ssh/id_rsa
  2. chmod 700 ~/.ssh
  3.  
  4. Port 22
  5. PubkeyAuthentication yes
  6. AuthurizationKeysFile .ssh/autherized_keys .ssh_authorized_keys2
  7.  
  8. concurrent = 1
  9. check_interval = 0
  10. log_level = "debug"
  11.  
  12. [session_server]
  13. session_timeout = 1800
  14.  
  15. [[runners]]
  16. name = "dep-runner"
  17. url = "https://gitlab.com/"
  18. token = "gitlabrepository-key"
  19. executor = "virtualbox"
  20. [runners.ssh]
  21. user = "WindowsUser"
  22. password = "WindowsPassword"
  23. port = "22"
  24. identity_file = "G:/ssh/id_rsa"
  25. [runners.virtualbox]
  26. base_name = "DeploymentMachine"
  27. user = "deployment"
  28. password = "root"
  29. identity_file = "/home/deployment/.ssh/id_rsa"
  30. port = "22"
  31. disable_snapshots = false
  32. [runners.cache]
  33. [runners.cache.s3]
  34. [runners.cache.gcs]
  35.  
  36. ----BEGIN RSA PRIVATE KEY-----
  37. THE KEY
  38. ----END RSA PRIVATE KEY------
  39.  
  40. # This file is a template, and might need editing before it works on your project.
  41. # Full project: https://gitlab.com/pages/plain-html
  42. pages:
  43. tags:
  44. - dep-tag
  45. stage: deploy
  46. script:
  47. - mkdir .public
  48. - cp -r * .public
  49. - mv .public public
  50. artifacts:
  51. paths:
  52. - public
  53. only:
  54. - master
Add Comment
Please, Sign In to add comment