Advertisement
Guest User

Untitled

a guest
Dec 9th, 2016
234
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. services {
  2. postgresql {
  3. host: "localhost"
  4.  
  5. db: [db_name]
  6.  
  7. user: [db_user]
  8.  
  9. password: [password]
  10. }
  11. modules: {
  12. # ... other modules
  13. security {
  14. # ... other settings
  15. server-keys: [
  16. # ... other server keys
  17. {
  18. public: "/usr/share/actor/keys/actor-key.pub"
  19. private: "/usr/share/actor/keys/actor-key.private"
  20. }
  21. ]
  22. }
  23. }
  24.  
  25. actor-activation {
  26. auth-token:[token]
  27. }
  28. }
  29.  
  30. secret: [secret]
  31. project-name: Actor Server
  32. public-endpoints: [
  33. <list of endpoints accessible by client applications>
  34. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement