All Questions

Tagged with
Filter by
Sorted by
Tagged with
0 votes
0 answers
32 views

Where do I store web server login credentials?

I am building a web server that will accept requests from mobile devices and route to 2 different SQL Server instances. For extra security, I want the mobile devices to have to log in twice - log in ...
TheMortiestMorty's user avatar
-2 votes
1 answer
38 views

Server with scalability for real-time collaboration and editing [closed]

I am here, to ask for absolute input. I have setup a local Apache Server with PHP 7.2 (currently), I am aware newer PHP exists. I know PHP and Python, I also know Node.js (server/back-end). With Node....
Alix Blaine's user avatar
3 votes
1 answer
2k views

Should I be concerned about attackers spraying for vulnerabilities on our webserver?

I'm running a webserver with monitoring software (Sentry.io) and I can see (failed) hits to the following endpoints: GET /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php GET /console/ POST /api/...
deeBo's user avatar
  • 133
0 votes
1 answer
2k views

Nginx Config For React and Node App Proxying to Wrong Path

I've setup a server with an Nginx config for a React frontend and Node backend. The Node app serves as an API for the react app. The node routes for /api/... are getting passed to the following path: ...
jFasaJr's user avatar
  • 121
0 votes
0 answers
208 views

static resources behind a reverse proxy server

Two localhost web servers are developed separately without the knowledge of each other and proxy server. Both setup using NodeJS and Express.js app.use(express.static(__dirname + '/frontend')); From ...
Konsy's user avatar
  • 1
1 vote
2 answers
2k views

How to access a web server application from other Pcs in the local network?

I have setup a Microserver to run a node.js web server using the express framework . I have enabled the port number from Windows Firewall (Advanced Settings , Windows Server 2012), and i can access ...
Alex Lemesios's user avatar
0 votes
0 answers
96 views

Can we not enable ngix to act as reverse proxy and webserver, based on url?

This is my config file server { listen 80; server_name localhost; root /var/www/example/public/; location / { try_files $uri $uri/ $uri.html =404; } location /api { ...
Santosh's user avatar
  • 111
1 vote
1 answer
32 views

Using Nginx nodejs apps need to run with test1domain.com/directory

I have to run nodejs app with the url like http://test1domain.com/directory: https://test1domain.com == live website https://test1domain.com/api1 == nodejs api https://test1domain.com/api2 == ...
Ramesh Chand's user avatar
4 votes
2 answers
1k views

running node.js application with nginx

I have a node application running on port 8443. My nginx handles the web requests on port 80 and 443 and should redirect the user to 8443. here's my /etc/nginx/sites-enabled/default config: upstream ...
Markus's user avatar
  • 109
0 votes
0 answers
4k views

Nginx with owncloud (https redirected) and reverse proxy for node.js issues

I'm pulling my hair out with the sparse support and documentation for Ubuntu server 15.04. although that's to be expected from a non LTS release. I have Nginx serving Owncloud, called example.com....
OverRipeBananas's user avatar
6 votes
3 answers
7k views

How to remove RC4 cipher from node.js https server running on Windows 2012 R2

Using ssllabs.com's scan tells me RC4 is in use. I read that RC4 should be disabled by default in Windows 2012 R2. I'm running a node.js server using https.createServer and not specifying ciphers (...
ciso's user avatar
  • 217
1 vote
2 answers
314 views

Unkillable upstart process

So I wrote a seemingly-basic node.js server upstart script based on a script from this article, and it works fine, starting the server and running on the expected port. The problem comes when I try to ...
moberemk's user avatar
  • 113
0 votes
0 answers
868 views

How can I set up a web server for reverse proxy having websockets and socket.io working normally?

I have a VPS currently hosting node.js web apps and one site. However I'm currently using custom ports for the apps. I'd like to simply give each its custom domain and so for more sites, that would ...
diegoaguilar's user avatar
1 vote
1 answer
1k views

Apache webserver not starting - Not sure what's wrong

I had installed apache webserver on my local machine (Linux Mint 15) and everything was working fine until I tried to install npm/nodejs. I'm getting this error whenever I try starting apache - ...
Sterex's user avatar
  • 111
2 votes
1 answer
5k views

Nginx: Modify response body with additional request

I'm looking for a way to modify the body of a response created by some webserver to which I proxy my requests using Nginx: server { listen 80; server_name localhost; location /...
Sebastian vom Meer's user avatar
0 votes
2 answers
432 views

Node.js on via DynDNS [closed]

I have never used Node.js but since I am developing a browsergame that needs (almost) "realtime" communication, I am planning on using Node.js for this. To get started, I wanted to use a home server (...
Shlomo's user avatar
  • 103
1 vote
1 answer
297 views

nginx with nodejs

I want to install nodejs and nginx on Ubintu Server 12.4 and set they up for robust working on. Can you provide answers for the following questions: Where should I install nodejs? Where should I to ...
Erik's user avatar
  • 203
0 votes
2 answers
2k views

How would the outside world access my machine? [closed]

I have a local address e.g: http://127.0.0.1:8125/ -> this works, How would I access this using a different PC lets say from work, or friends house or allow anyone to access this? I am using node....
Val's user avatar
  • 113
0 votes
4 answers
178 views

web servers & php [closed]

I usually code in PHP, and always used apache. I have started my own website but I soon realised that apache is not the best solution to have: it uses 15MB of memory per page, making a small server ...
Enrico Tuttobene's user avatar
12 votes
5 answers
9k views

Is anyone using Node.js as an actual web server? [closed]

I am trying to convince myself to pick it up and start developing with it, but I want to know if anyone has expected stability issues or anything of the sort. I understand it isn't "production" ...
Jeremy Boyd's user avatar