Mercurial > hg > orthanc-stone
view Applications/Samples/nginx.local.conf @ 508:7105a0bad250 bgo-commands-codegen
- Added HandleSerializedMessage to IStoneApplication (empty impl)
- Split UpdateWebApplication with "WithString" and "WithSerializedMessage" variants
- Due to the modules in TS, globals are now unallowed and the callbacks from C++ to JS are stored in the "window" instance
- Split UpdateStoneApplicationStatusFromCpp with "WithString" and "WithSerializedMessage" variants
- Split NotifyStatusUpdateFromCppToWeb with "WithString" and "WithSerializedMessage" variants
- SendMessageToStoneApplication (C++ global) has been split into SendSerializedMessageToStoneApplication and SendCommandToStoneApplication
- In WasmPlatformApplicationAdapter: HandleMessageFromWeb becomes HandleCommandFromWeb
- In WasmPlatformApplicationAdapter: added HandleSerializedMessageFromWeb
- stonegentool now handles the "json" primitive type (used, a.o., in the VSOL "EditInstance" message)
- Fixed indentation and added json serialization overloads in the stonegentool templates
- Added test of the json primitive type to testWasmIntegrated (in Resources/CodeGeneration)
- Adapted testWasmIntegrated (in Resources/CodeGeneration) to the changes above
author | Benjamin Golinvaux <bgo@osimis.io> |
---|---|
date | Wed, 06 Mar 2019 10:14:59 +0100 |
parents | ee41b6a017d7 |
children | 40bb5eb247a5 |
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:8044; 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; } } }