Is it possible to run a Mattermost instance as an onion service? - tor

All is in the title: do you know if it's possible to deploy and use a Mattermost instance via Tor? Moreover, if I install Orbot on my Android phone, will I be able to connect to this instance via a Mattermost client? Thank you!

Related

accessing a service which is hosted on the intranet

Hi I am new to Dialogflow. I am trying to do the following
I am trying to create a simple bot application which would use a webhook to connect to an external service (hosted on my local webserver/ company server).
Based on the documentation Docs it seems that the service has to be publicly accessible. Can I do this?
Thank you
Yes, the webhook server must be at a publicly accessible HTTPS address.
If you are trying to use an internal server that is not available to the public Internet, you may wish to look into a tunneling service such as ngrok.

Azure Mobile Services with Websocket

I would like to use websocket to notify a remote website whenever a table insert is triggered on my Azure mobile services.
Right now I was able to successfully send GCM notification to registered device using
push.gcm.send
in my insert script.
If i want to achieve aforementioned requirement, what are the required steps?
Setup a Node.js server, call node.js server from insert script, then node.js server use websocket to connect with remote website?
Please kindly point me to the right direction.
thanks!
One option is to use Socket.IO with Azure Mobile Services: https://azure.microsoft.com/en-us/blog/how-to-use-socket-io-with-azure-mobile-service-node-backend/
The comment posted by #gary-liu-msft is also good idea, using queues. He pointed here: https://azure.microsoft.com/en-us/blog/how-to-use-socket-io-with-azure-mobile-service-node-backend/

How can I setup the DocuSign Connect feature while I am developing locally on my laptop

I want to connect docusign locally to my application. How it can be done? How can I setup the DocuSign Connect feature while I am developing locally on my laptop? Please guide me with detailed steps.
You're going to have to have your network forward an externally accessible url to your localbox.
Since Connect is a service hosted at DocuSign and requires a valid endpoint to send data to, and if RequireAcknowledgement is enabled, you'll have to send data back to the service as well.

Is it possible to run a NodeJS app using phonegap?

I have a web app that is hosted on a web server that was created using NodeJS (http://www.ruffle.us). What I want to do is make this web app into a mobile application gaining access to the contact list to enter phone numbers. I have looked at technologies such as phonegap/cordova for this task but am still unsure from the documentation. Any experience or input on this would be appreciated.
Cordova provides a browser environment, so you can't run Node.js in it. But you can of course run your web frontend inside Cordova and use it to get access to device APIs like the contact list and communicate with your server.

Nodejs - User authentication

I've been wrote a WebAPI service with nodejs and MongoDB, it works great.
The WebAPI service running over linux.
I want the Node service to know the user ID for each request.(The network is Intranet)
I want to use the windows integrate authentication
how can i get the windows userId in the NodeJS service?
Best regards
I think passport-windowsauth should be able to take care of it for you.

Resources