diff options
author | Florian Dieminger <me@fiji-flo.de> | 2021-02-11 18:27:57 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-11 18:27:57 +0100 |
commit | 38577fa9b17463b731d503d61bddd399dadea6ac (patch) | |
tree | 73b60b0d72190a8da1c1baa063d690f935fb5120 /files/ru/glossary/server | |
parent | 609ee7efcfe881caa08237948e1ed3252e60afa1 (diff) | |
parent | 786d51e5e35f25c06fc64083574a435e240b2a54 (diff) | |
download | translated-content-38577fa9b17463b731d503d61bddd399dadea6ac.tar.gz translated-content-38577fa9b17463b731d503d61bddd399dadea6ac.tar.bz2 translated-content-38577fa9b17463b731d503d61bddd399dadea6ac.zip |
Merge pull request #42 from fiji-flo/unslugging-ru
Unslugging ru
Diffstat (limited to 'files/ru/glossary/server')
-rw-r--r-- | files/ru/glossary/server/index.html | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/files/ru/glossary/server/index.html b/files/ru/glossary/server/index.html new file mode 100644 index 0000000000..88373f3a87 --- /dev/null +++ b/files/ru/glossary/server/index.html @@ -0,0 +1,26 @@ +--- +title: Server +slug: Glossary/Server +translation_of: Glossary/Server +original_slug: Словарь/Server +--- +<p>A server is a software or hardware offering a service to a user, usually referred to as client. A hardware server is a shared computer on a network, usually powerful and housed in a data center. A software server (often running on a hardware server) is a program that provides services to client programs or a {{glossary("UI","user interface")}} to human clients.</p> + +<p>Services are provided generally over local area networks or wide area networks such as the internet. A client program and server program traditionally connect by passing messages encoded using a {{glossary("protocol")}} over an {{glossary("API")}}.</p> + +<p>For example:</p> + +<ul> + <li>An Internet-connected Web server is sending a {{glossary("HTML")}} file to your browser software so that you can read this page</li> + <li>Local area network server for file, name, mail, print, and fax</li> + <li>Minicomputers, mainframes, and super computers at data centers</li> +</ul> + +<h2 id="Learn_More"><strong>Learn More</strong></h2> + +<h3 id="General_knowledge">General knowledge</h3> + +<ul> + <li><a href="https://developer.mozilla.org/en-US/Learn/What_is_a_web_server">Introduction to servers</a></li> + <li>{{Interwiki("wikipedia", "Server (computing)")}} on Wikipedia</li> +</ul> |