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!
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

43 Zeilen
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. }