Questions tagged [server]

A server is a running instance of a software application capable of accepting requests from a client and giving responses accordingly.

A server is a running instance of an application (Software) capable of accepting requests from the client and giving responses accordingly.

Servers can run on any computer including dedicated computers, which individually are also often referred to as "the server".

In many cases, a computer can provide several services and have several servers running. The advantage of running servers on a dedicated computer is security. For this reason most of the servers are daemon processes and designed by the designers in such a way that they can be run on specific computer(s).

There are various categories of servers. Please refer to this Wikipedia page to learn more about the subcategories of servers.

21987 questions
2
votes
0 answers

How to access network drive folder using credentials in R?

In my company we have Network Drives where we store flat files e.g. ".txt" files. I have access to a specific folder of a network drive (e.g. "DNS_DRIVE\folder_name"), by using my Windows Credentials. So I login to a Workstation (Workstation has…
2
votes
1 answer

convert url get parameters to url segment in nginx

I have this URL https://example.com/user?param1=value1¶m2=value2¶m3=value3 and have it to go to https://example.com/user/value1/value2/value3 on the Nginx server. Just FYI it is WordPress site and I have added the following rule in the…
user10790140
  • 131
  • 1
  • 4
2
votes
1 answer

Django best practices for creating private user groups

I'm creating a group app and I want it to be invitation only, but I'm wondering if there's a better way to do this. This setup works fine, but if anyone sees any issues I might run into please let me know. I've included the models and the views…
pererasys
  • 41
  • 1
  • 2
2
votes
1 answer

How to proxy two api's in package.json when two different backend languanges are used?

I am trying to proxy two API endpoints from two different backend languages [Node.js, and SpringBoot] in my react app I was hoping to see if there is a way to proxy the node.js server along with my server on the spring application in the…
2
votes
1 answer

Vapor - How to increase Size of folder for deploying to staging and production?

I try to deploy our code to staging I was found an error message something like this. Compressed application is greater than 45MB. Your application is 69 MB. Whoops! There were some problems with your request. Vapor applications may not have more…
2
votes
1 answer

I would like to create some kind of API to run a ruby program via a unique key

I wrote a ruby program that runs on my local machine, and I want to turn it into a linux server API that will send back the formatted JSON file that the ruby program generates. The ruby program already works, and generates a separate JSON file on my…
Alien
  • 75
  • 6
2
votes
1 answer

What is more preferred in terms of scalability and security for a SAAS type web application, a subdomain structure or a URL structure?

I have SAAS type application and I am providing it service to many users. It is developed using php. I want to know which structure is better, right now I have subdomain structure, each group is different subdomain, though all uses same code from…
Jay
  • 704
  • 1
  • 14
  • 40
2
votes
1 answer

DeviceOrientationEvent not working on all servers

I have fedora installed on a virtual machine on my computer, and I've been trying to get deviceOrientation events to fire when I view the site on my phone. It hasn't been working, so using the answer from this thread: How to check for a…
M. Salman Khan
  • 559
  • 1
  • 4
  • 16
2
votes
2 answers

Grpc - send message from one client to another client that is connected to the same server

Is it possible to send message from one client to another client that is connected to the same server? I want send data from one client to server Then send to specific client. I think I need to get client ID but I dont know how to get this id and …
2
votes
2 answers

Samples for the AndroidPublisher (V3) Google API Client Library for Java

I am upgrading AndroidPublisher library from v1 to v3 for my secure backend server. AndroidPublisher library (v3) will allows me to do server side purchase validation and acknowledgement for in-app purchases and subscription securely. Existing code…
Roy
  • 493
  • 9
  • 18
2
votes
2 answers

wildfly time out [300] is occurring while running the project in debug mode on server

when i run my project in the wildfly there is no issue . but in eclipse when i run the project in debug mode on server after 5 minutes ie 300 s a timeout error is occurred. i tried changing the standalone config bat file by adding set…
AzizShaw
  • 51
  • 5
2
votes
2 answers

How to setup subdomain on the nuxt js with pm2?

I got problem when setup subdomain on the server with nuxt js. I have setup /etc/hosts and put 127.0.0.1 subdomain.localhost then restart the nginx server and restart the pm2. And the main domain not using localhost:3000, so port is available. But I…
2
votes
0 answers

How fix Server Cpanel automatically adds blank lines to the php code file

After I upload the php file from localhost to hosting, it automatically adds a blank line to my file, every line of code is a blank line. Even if I upload the .zip file to the hosting site and extract it from the file manager of the hosting server,…
LeagenTran
  • 21
  • 2
2
votes
1 answer

Launching two spring boot apps in integration test

I have a spring boot integration test. Currently it is running on the test through my test server app(MockServerApp.java) which is located in src/test/resources. I want to also launch my spring boot app (App.java) before the integration tests are…
schooner_101
  • 219
  • 4
  • 16
2
votes
1 answer

.htaccess: Redirect domain to https not working if also changing the root path

I have the following domains: example1.com example2.com example3.com The domains point to /public_html/. There are three things I want to do in /public_html/.htaccess: Redirect (with all parameters and paths) the domains example2.com and…
David
  • 2,179
  • 2
  • 9
  • 30
1 2 3
99
100