nginx_captive-piratebox.conf 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. # PirateBox app for YunoHost
  2. # Copyright (C) 2015 Julien Vaubourg <julien@vaubourg.com>
  3. # Contribute at https://github.com/labriqueinternet/piratebox_ynh
  4. #
  5. # This program is free software: you can redistribute it and/or modify
  6. # it under the terms of the GNU Affero General Public License as published by
  7. # the Free Software Foundation, either version 3 of the License, or
  8. # (at your option) any later version.
  9. #
  10. # This program is distributed in the hope that it will be useful,
  11. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. # GNU Affero General Public License for more details.
  14. #
  15. # You should have received a copy of the GNU Affero General Public License
  16. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  17. server {
  18. listen 4280 default_server;
  19. listen [::]:4280 default_server;
  20. root <TPL:NGINX_REALPATH>;
  21. client_max_body_size 10G;
  22. if ($host != '<TPL:DOMAIN>') {
  23. set $args '';
  24. rewrite ^ http://<TPL:DOMAIN>;
  25. }
  26. location /public/uploads/ {
  27. add_header Content-Type "application/octet-stream";
  28. add_header Content-Disposition "attachment; filename=$1";
  29. }
  30. location /public/chat/ {
  31. deny all;
  32. return 403;
  33. }
  34. location ~ \.php {
  35. include fastcgi_params;
  36. client_body_temp_path /var/spool/piratebox/;
  37. fastcgi_pass_request_body off;
  38. client_body_in_file_only clean;
  39. proxy_max_temp_file_size 0;
  40. fastcgi_param REQUEST_BODY_FILE $request_body_file;
  41. fastcgi_read_timeout 600;
  42. fastcgi_send_timeout 600;
  43. fastcgi_index index.php;
  44. fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
  45. fastcgi_pass unix:/var/run/php5-fpm-<TPL:PHP_NAME>.sock;
  46. }
  47. location @piratebox {
  48. rewrite ^/(.*)$ /?/get&dir=$1;
  49. }
  50. location / {
  51. index index.html index.php;
  52. try_files $uri $uri/ @piratebox;
  53. }
  54. access_log /var/log/nginx/piratebox-access.log;
  55. error_log /var/log/nginx/piratebox-error.log;
  56. }