All Questions

Tagged with
Filter by
Sorted by
Tagged with
0 votes
1 answer
722 views

Correct Way to Install Node.js in a Multiuser Server? [duplicate]

I have to acknowledge being an old timer U*ix system administrator. Software to be used by everybody had two possible locations: /usr/bin /usr/local/bin The best example is gcc and family. Now I find ...
David Alarcon's user avatar
0 votes
1 answer
99 views

What Prevents a Server Owned by a Non-Priviledged User to be Reached by Apache?

There is a popular Open Source application written in Javascript Node.js that listens to port localhost:1234 under my regular, non privileged account. When connecting from localhost everything works ...
David Alarcon's user avatar
0 votes
1 answer
62 views

Scheduled Copy Bigquery View/Query to Google Sheet

I have a BigQuery View/Query that every morning I need to run and copy the result to a Google Sheet. I am using Javascript, and plan to use the node.js BigQuery client library and the Google Sheets ...
Max888's user avatar
  • 111
1 vote
1 answer
1k views

Cloudfront disrupting authentication with JSON Web Token

Short version: my jwt token is not surviving a refresh when pointing to domain behind Cloudfront. Not sure if this is best posted here or on stackoverflow, but since I think I've isolated the problem ...
djibouti33's user avatar
1 vote
1 answer
3k views

nginx set different document root for a proxypass

I'm just trying to run a nodejs app I made on a proxypass domain, and have it work exactly as it did on my desktop. However, for some reason, even though I defined a seperate document root for this ...
Jake t's user avatar
  • 127
0 votes
1 answer
35 views

how to point parts of a single url to 2 different servers using nginx

I have pointed a location /tanya to an address http://52.221.238.24/tanya;, I also want /tanya/t/ to point to the same IP. However, I need to point /tanya/dynamically_generated to point to another IP ...
Subrat Dash's user avatar
1 vote
0 answers
5k views

nginx reverse proxy Nodejs - 404 not found

I have a simple NodeJS application that needs to display a few webpages. I have the Node app running at http://localhost:3100 and want to use an NGINX Reverse Proxy to allow users access to the app ...
Kris Stadler's user avatar
0 votes
1 answer
2k views

How to configure .htaccess to run JavaScript with node as CGI

I'm testing this on my linux localhost. This is what I'm trying: balter@spectre:/var/www/html$ cat .htaccess Action cgi-node "/usr/bin/env node" AddHandler cgi-node .js balter@spectre:/var/www/html$...
abalter's user avatar
  • 121
1 vote
1 answer
4k views

Nginx - Even after adding the directive 'access control allow origin' the request logs error

I am trying to run nginx infront of my nodejs application (I am using windows machine) My NodeJS Application is running in 3000 port I have started the Nginx at 8070 port When i try to hit http://...
VJohn's user avatar
  • 119
1 vote
1 answer
58 views

JavaScript interpreters on older Debian installations (sarge)

I am goign to write a few scripts for managing tasks via command line on the servers. I will use the NodeJS Debian package in servers that support it, but I have a few servers still in Debian 3.1 (...
gtbono's user avatar
  • 237
0 votes
0 answers
156 views

Meteor JS issues on failover (Delay in reconnection)

Our meteor deployment contains two meteor nodes, behind a network load balancer (Google cloud NLB which simply passes on requests to a target pool of 2 Ubuntu 14.04 meteor instances). Each node has a ...
Danny Z's user avatar
2 votes
0 answers
763 views

From Http to Https NodeJS Websockets on Apache Server

Here is my problem. I have a virtual machine, on windows, the Apache server (2.4) is installed on it. The vm is on the network, so that other people can reach it directly on http://192.168.100.22 (...
Julo0sS's user avatar
  • 163
2 votes
0 answers
1k views

Can't go to route using nginx and Express.JS

So I have express.js set up behind nginx and when I go to website.com/users, I get a 404. But when I go to website.com, the page loads fine. This appears to be all other routes too, I can't get to ...
John's user avatar
  • 29
1 vote
0 answers
789 views

How to start pm2 without autosave logs

I start my nodejs app with pm2, all works, but it save expensive logs. I don't know how to start without save logs, i want to save only error logs. Thanks!
Valerio Cicero's user avatar
0 votes
0 answers
702 views

Internaly hosted alternative to cloudbased nobackend solution like Firebase

In an environment where I can't use a cloud based service like Firebase, I'm looking for recommendation for an internally hosted nobackend solution. I could use node or meteor but really am just ...
Nikos's user avatar
  • 103
0 votes
1 answer
924 views

deploying meteor on my own domain (ubuntu)

I want to deploy my meteor app on my Ubuntu server, I used meteor.sh and everything went successfully, But i simply can't launch my app from the browser I'm putting my ip address and getting a 404 ...
Dany Y's user avatar
  • 115
0 votes
1 answer
121 views

nginx not starting with multiple nodejs apps

i have this config in sites-enabled/default upstream domainone.com.ar { server 127.0.0.1:9000; } server { listen 80; server_name www.domainone.com.ar; rewrite ^/(.*) http://domainone.com.ar/$1 ...
andrescabana86's user avatar
1 vote
1 answer
4k views

How can I build Node.js using static libssl and crypto libraries?

[Update] A solution has been found: https://github.com/robhawkes/node-extension/issues/1 I'm embedding Node within a browser extension and don't want the user to manually install openssl or even know ...
Robin Hawkes's user avatar
20 votes
4 answers
38k views

How do I configure Nginx proxy_pass Node.js HTTP server via UNIX socket?

I am trying to configure a Nginx server to connect to a Node.js HTTP server via a UNIX domain socket. The Nginx configuration file: server { listen 80; location / { proxy_pass http://unix:/...
pvorb's user avatar
  • 1,060
6 votes
3 answers
7k views

Is Node.js mature for enterprise security?

Our development team has been considering using Node.js for a new enterprise application that requires high-level security. The users include federal police, so there's a high chance that we'll ...
crockpotveggies's user avatar
13 votes
3 answers
20k views

Criteria for choosing a server to run Node.js

What criteria would I use to choose a server to run Node.js? It seems like shared-hosting is a nonstarter since it's so new. Given how it works, what would I be looking at in terms of a production ...
artlung's user avatar
  • 268
2 votes
1 answer
799 views

node.js ./configure warnings

I'm trying to install node.js and I get this list of warnings when I run ./configer. I don't know which libraries/packages I miss on my Debian installation (Linux 2.6.32.6 ppc GNU/Linux on a Bubba2 ...
microspino's user avatar