Budget: 500 UAH Deadline: 1 day
Good day !
We have great experience working with server and date centers.
Budget: 500 UAH Deadline: 1 day
Good day !
We have great experience working with server and date centers.
Budget: 800 UAH Deadline: 1 day
Hello, my name is Michael.I am a system administrator with a 15-year experience.=========================
I read the text of your task.I have great experience in such tasks, reviews about similar projects in the profile.I appreciate your time, and this task will be resolved in the shortest time possible.Make a list of questions and write in the face.After that we will be able to discuss these issues not only verbally, but I can also help/consult in practice.10 days guarantee for performed work.The fulfilled tasks:
Freelancehunt
=========================
I provide system management services for computer systems.Guarantee for performed work + support if necessary.My customers are always satisfied with the quality of work.=========================
Installation and maintenance of servers
Virtualization of VMware, HyperV, ProxMox
Installation and setting of Windows/Linux
Installation and configuration of MSSQL Server
- Installation and update 1C:Enterprise, M.E.Doc, Bitrix
Installation and configuration of web servers (LAMP, LEMP, SSL)
Postfix, Dovecot, Postfixadmin, Roundcube, DKIM, SPF
Monitoring system Zabbix
Cloud storage and FTP
Reserve copying, replication
Router and network equipment (Wi-Fi, Vlan, VPN)
Installation and configuration of PO
=========================
“Quality is doing good even where you don’t see.”
Who can help set up such a setup: I plan to deploy a server that will work in parallel with 4–5 different AI models for programming tasks. The key requirement is multi-user access: several developers will be able to use the server simultaneously, each in an isolated session with their own agents. Models Claude / GPT / Kimi k3
As part of enhancing the cybersecurity level of our infrastructure, we need to abandon the practice of storing "eternal" and static API keys, passwords, and integration tokens in the configuration files (.env, appsettings.json, config.yaml) of our microservices. Business Goal: Create a single secure storage point for confidential data (secrets) with a mechanism for their automatic updating (rotation) in external systems on a schedule. Our other services will request current tokens "on the fly" via API, which will minimize damage in case of compromise of any system component.Security Model and Encryption (Crypto Core) No secret should be stored in plaintext in the database. Upon application startup, a Master Key is passed to the environment variables. If the key is missing or has an invalid length, the service should fail at the initialization stage with a clear error in the logs. Each secret is encrypted before being written to the database using this Master Key. Upon request, it is decrypted in memory and returned in the response body.Audit Logging (Audit Trail) Any action with secrets (creation, reading by the service, successful or unsuccessful rotation) must be recorded in a separate log file audit.log (or a separate table in the database). Strict Taboo: It is strictly prohibited to record the actual values of secrets in the audit log (neither in plaintext nor in encrypted form).