Jump to content

Скрипт рулетки VISOR с антиминусом и подкруткой, слотами


Leprikon
 Share

Recommended Posts

1688229463.thumb.jpg.ded60b86f2ac3a56346783b0c5ba487f.jpg

Скрипт рулетки VISOR с игровыми слотами от b2b, прием платежей через фрикассу и киви, в скрипте есть Dice, Mines, Coin, X50, Jackpot.
Подкрутка в админке, реферальная система, бонусы.
Установка на VDS/VPS

// Инструкция // команды

sudo apt-get -y --allow-unauthenticated install unzip zip nginx curl php7.2 php7.2-mysql php7.2-fpm php7.2-mbstring php7.2-xml php7.2-curl redis-server

apt-get -y install mysql-client mysql-server

// Установка пароля для базы

ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY '1234';

curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -

sudo apt-get install nodejs

npm i -g pm2 для вебсокета запуск игр команды 

cd /var/www/html/server

pm2 start app.js 

Запустит игровые режимы и в целом сам сайт

 

Данные от базы в файле /var/www/html .env

Конфигурация для сервера nginx в /etc/nginx

Как настроить сертификаты HTTPS (получить SSL бесплатно) - https://routerus.com/secure-nginx-with-let-s-encrypt-on-ubuntu-18-04/

Конфигурация для NGINX

limit_conn_zone $binary_remote_addr zone=perip:10m;

limit_conn_zone $server_name zone=perserver:10m;

server {

limit_conn perip 10;

limit_conn perserver 100;

# Log files for Debugging

access_log /var/log/nginx/laravel-access.log;

error_log /var/log/nginx/laravel-error.log;

# Webroot Directory for Laravel project

root /var/www/html/public;

index index.php index.html index.htm;

# Your Domain Name

server_name туттвойдомен; # Тут изменяем на свой домен

location / {

try_files $uri $uri/ /index.php?$query_string;

}

# PHP-FPM Configuration Nginx

location ~ \.php$ {

try_files $uri =404;

fastcgi_split_path_info ^(.+\.php)(/.+)$;

fastcgi_pass unix:/run/php/php7.2-fpm.sock;

fastcgi_index index.php;

fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;

include fastcgi_params;

}

listen [::]:443 ssl ipv6only=on;

listen 443 ssl;

ssl_certificate /etc/nginx/ssl/cert.pem;

ssl_certificate_key /etc/nginx/ssl/privkey.pem;

}

server {

if ($host = туттвойдомен) { # Тут изменяем на свой домен

return 301 https://$host$request_uri;

}

listen 80;

listen [::]:80 ipv6only=on;

server_name туттвойдомен; # Тут изменяем на свой домен

return 404;

}

 

Чтобы просмотреть скрытый контент, вам необходимо:
Зарегистрироваться или Войти в свою учетную запись!

Link to comment
Share on other sites

  • 1 month later...
  • 1 month later...
  • 3 months later...
  • 1 month later...
  • 4 months later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...