Contains the Concourse pipeline definition for building a line-server container
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

80 lines
2.4 KiB

9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
  1. Linx Server
  2. ======
  3. [![Build Status](https://travis-ci.org/andreimarcu/linx-server.svg?branch=master)](https://travis-ci.org/andreimarcu/linx-server)
  4. Soon-to-be opensource replacement of Linx (media-sharing website)
  5. **Consider it in pre-alpha development stages.**
  6. Get release and run
  7. -------------------
  8. 1. Grab the latest binary from the [releases](https://github.com/andreimarcu/linx-server/releases)
  9. 2. Run ```./linx-server...```
  10. Command-line options
  11. --------------------
  12. - ```-b 127.0.0.1:8080``` -- what to bind to (default is 127.0.0.1:8080)
  13. - ```-sitename myLinx``` -- the site name displayed on top (default is linx)
  14. - ```-siteurl "http://mylinx.example.org/"``` -- the site url (for generating links)
  15. - ```-filespath files/"``` -- Path to store uploads (default is files/)
  16. - ```-metapath meta/``` -- Path to store information about uploads (default is meta/)
  17. - ```-fastcgi``` -- (optionally) serve through fastcgi
  18. - ```-nologs``` -- (optionally) disable request logs in stdout
  19. Deployment
  20. ----------
  21. A suggested deployment is running nginx in front of linx-server serving through fastcgi.
  22. An example configuration:
  23. ```
  24. server {
  25. ...
  26. server_name yourlinx.example.org;
  27. ...
  28. client_max_body_size 4096M;
  29. location / {
  30. fastcgi_pass 127.0.0.1:8080;
  31. include fastcgi_params;
  32. }
  33. }
  34. ```
  35. Development
  36. -----------
  37. Any help is welcome, PRs will be reviewed and merged accordingly.
  38. The official IRC channel is #linx on irc.oftc.net
  39. 1. ```go get -u github.com/andreimarcu/linx-server ```
  40. 2. ```cd $GOPATH/src/github.com/andreimarcu/linx-server ```
  41. 3. ```go build && ./linx-server```
  42. TODO
  43. ----
  44. Please refer to the [main TODO issue](https://github.com/andreimarcu/linx-server/issues/1)
  45. License
  46. -------
  47. Copyright (C) 2015 Andrei Marcu
  48. This program is free software: you can redistribute it and/or modify
  49. it under the terms of the GNU General Public License as published by
  50. the Free Software Foundation, either version 3 of the License, or
  51. (at your option) any later version.
  52. This program is distributed in the hope that it will be useful,
  53. but WITHOUT ANY WARRANTY; without even the implied warranty of
  54. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  55. GNU General Public License for more details.
  56. You should have received a copy of the GNU General Public License
  57. along with this program. If not, see <http://www.gnu.org/licenses/>.
  58. Author
  59. -------
  60. Andrei Marcu, http://andreim.net/