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.

84 lines
2.9 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. - ```-contentsecuritypolicy "..."``` -- Content-Security-Policy header for pages (default is "default-src 'self'; img-src 'self' data:; style-src 'self' 'unsafe-inline'; referrer none;")
  18. - ```-filecontentsecuritypolicy "..."``` -- Content-Security-Policy header for files (default is "default-src 'none'; img-src 'self'; object-src 'self'; media-src 'self'; sandbox; referrer none;"")
  19. - ```-xframeoptions "..." ``` -- X-Frame-Options header (default is "SAMEORIGIN")
  20. - ```-remoteuploads``` -- (optionally) enable remote uploads (/upload?url=https://...)
  21. - ```-fastcgi``` -- (optionally) serve through fastcgi
  22. - ```-nologs``` -- (optionally) disable request logs in stdout
  23. Deployment
  24. ----------
  25. A suggested deployment is running nginx in front of linx-server serving through fastcgi.
  26. An example configuration:
  27. ```
  28. server {
  29. ...
  30. server_name yourlinx.example.org;
  31. ...
  32. client_max_body_size 4096M;
  33. location / {
  34. fastcgi_pass 127.0.0.1:8080;
  35. include fastcgi_params;
  36. }
  37. }
  38. ```
  39. Development
  40. -----------
  41. Any help is welcome, PRs will be reviewed and merged accordingly.
  42. The official IRC channel is #linx on irc.oftc.net
  43. 1. ```go get -u github.com/andreimarcu/linx-server ```
  44. 2. ```cd $GOPATH/src/github.com/andreimarcu/linx-server ```
  45. 3. ```go build && ./linx-server```
  46. TODO
  47. ----
  48. Please refer to the [main TODO issue](https://github.com/andreimarcu/linx-server/issues/1)
  49. License
  50. -------
  51. Copyright (C) 2015 Andrei Marcu
  52. This program is free software: you can redistribute it and/or modify
  53. it under the terms of the GNU General Public License as published by
  54. the Free Software Foundation, either version 3 of the License, or
  55. (at your option) any later version.
  56. This program is distributed in the hope that it will be useful,
  57. but WITHOUT ANY WARRANTY; without even the implied warranty of
  58. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  59. GNU General Public License for more details.
  60. You should have received a copy of the GNU General Public License
  61. along with this program. If not, see <http://www.gnu.org/licenses/>.
  62. Author
  63. -------
  64. Andrei Marcu, http://andreim.net/