IF YOU WOULD LIKE TO GET AN ACCOUNT, please write an email to s dot adaszewski at gmail dot com. User accounts are meant only to report issues and/or generate pull requests. This is a purpose-specific Git hosting for ADARED projects. Thank you for your understanding!
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

43 lignes
1010B

  1. error_log /dev/null;
  2. pid nginx.pid;
  3. daemon off;
  4. events {
  5. }
  6. http {
  7. include /pstore/data/data_science/app/modules/nginx-1.17.8/conf/mime.types;
  8. access_log /dev/null;
  9. server {
  10. listen 50080;
  11. server_name rkalbhpc002.kau.roche.com;
  12. client_body_temp_path tmp/client_body_temp;
  13. fastcgi_temp_path tmp/fastcgi_temp;
  14. proxy_temp_path tmp/proxy_temp;
  15. scgi_temp_path tmp/scgi_temp;
  16. uwsgi_temp_path tmp/uwsgi_temp;
  17. if ( $request_uri ~ \.(js|css|html|woff|ttf|svg|woff2|eot|svg)$ ) {
  18. break;
  19. }
  20. if ( $request_uri ~ ^/fetch-blocks$ ) {
  21. break;
  22. }
  23. rewrite .* /index.html;
  24. location / {
  25. root /pstore/home/adaszews/workspace/arvados-workbench-advanced/frontend/dist;
  26. index index.html;
  27. }
  28. location /fetch-blocks {
  29. proxy_pass http://localhost:12358/fetch-blocks;
  30. }
  31. }
  32. }