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.

97 lines
3.5 KiB

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