Configs from the panel

Edit configs
without SSH

PHP, Nginx, MySQL, Supervisor, .env — all configurations are available right in the panel. Syntax highlighting, validation and a backup before saving.

Editor with syntax highlighting

Syntax highlighting for nginx, php, ini, json, yaml, xml, html, css, sql, sh.

/etc/nginx/sites-available/demo.deploykin.com
nginx · 42 lines · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
server {
  listen 443 ssl http2;
  server_name demo.deploykin.com www.demo.deploykin.com;

  root /var/www/demo/current/public;
  index index.php;

  client_max_body_size 64M;

  location / {
    try_files $uri $uri/ /index.php?$query_string;
  }

  # PHP-FPM
  location ~ \.php$ {
nginx -t: OK hash: a3f2c1d
Last modified: 2 hours ago

Supported configs

PHP, Nginx, MySQL, Supervisor, .env — edit any server configuration file.

PHP

php.ini, FPM pool

memory_limit, upload_max_filesize, max_execution_time, OPcache, and other settings.

Nginx

server blocks, main

worker connections, client_max_body_size, gzip, and server blocks for each site.

MySQL

my.cnf

max_connections, innodb_buffer_pool_size, slow query log, and other parameters.

Supervisor

supervisord.conf

Daemon configuration: command, directory, number of processes, auto-restart.

.env

Environment variables

Edit .env files for each site. Secure secret storage.

Backup before saving

All configs

A backup (.bak) is created before every save, and a syntax check catches errors before applying.

PHP settings

Core PHP and FPM pool parameters — without editing files by hand. Validation before applying.

  • Validation: php-fpm -t before applying
  • Per-website and per-server configurations
  • Hash control for tracking changes
PHP 8.3 — Parameters
demo.deploykin.com
256M
64M
60
3000
128M
FPM Pool
10
3
2
5

Nginx

Core parameters

1024
64M
nginx -t: OK

MySQL

my.cnf parameters

150
512M
MySQL restart required

Configs without SSH

Edit PHP, Nginx, MySQL and other configurations right from the browser. Validation and a backup before saving are included.

We use cookies and the Yandex Metrica web-analytics service (including Session Replay) to improve the site. Details are in the privacy policy.