view Applications/Samples/nginx.local.conf @ 632:500c3f70b6c2

- Added a ClearAllChains method to PolylineSceneLayer --> revision must change when calling it ==> BumpRevision has been added to base class - Added some docs = Added GetMinDepth + GetMaxDepth to Scene2D (to alleviate the need for app- specific "Z depth registry" : clients may simply add a new layer on top or at the bottom of the existing layer set. - Added the line tracker measurement tools, commands and trackers. Generic base classes + Line measure - started work on the line measure handles
author Benjamin Golinvaux <bgo@osimis.io>
date Thu, 09 May 2019 10:41:31 +0200
parents 40bb5eb247a5
children
line wrap: on
line source

# Local config to serve the WASM samples static files and reverse proxy Orthanc.
# Uses port 9977 instead of 80.

# `events` section is mandatory
events {
  worker_connections 1024; # Default: 1024
}

http {

  # prevent nginx sync issues on OSX
  proxy_buffering off;

  server {
    listen 9977 default_server;
    client_max_body_size 4G;

    # location may have to be adjusted depending on your OS and nginx install
    include /etc/nginx/mime.types;
    # if not in your system mime.types, add this line to support WASM:
    # types {
    #    application/wasm                      wasm; 
    # }

    # serve WASM static files
    root build-web/;
    location / {
	}

    # reverse proxy orthanc
	location /orthanc/ {
		rewrite /orthanc(.*) $1 break;
		proxy_pass http://127.0.0.1:8042;
		proxy_set_header Host $http_host;
		proxy_set_header my-auth-header good-token;
		proxy_request_buffering off;
		proxy_max_temp_file_size 0;
		client_max_body_size 0;
	}


  }
  
}