Go to file
VirtuBrick 84dca30b15 first commit 2024-01-19 23:54:53 -05:00
broom first commit 2024-01-19 23:54:53 -05:00
content first commit 2024-01-19 23:54:53 -05:00
obfuscated_js first commit 2024-01-19 23:54:53 -05:00
public first commit 2024-01-19 23:54:53 -05:00
.gitattributes first commit 2024-01-19 23:54:53 -05:00
README.md first commit 2024-01-19 23:54:53 -05:00
db.sql first commit 2024-01-19 23:54:53 -05:00
mime.types first commit 2024-01-19 23:54:53 -05:00
nginx.conf first commit 2024-01-19 23:54:53 -05:00
php.ini first commit 2024-01-19 23:54:53 -05:00

README.md

Roblosium

New Roblosium Codebase

Requirements

  • nginx (version 1.21 or up)
  • PHP (version 8.0 or up)
  • MariaDB (version 10.6 or up)

Optional

Notes

I recommend changing the root password or just creating a new user alltogether for security.

Installation

nginx

Replace the mine.types and nginx.conf files inside of the nginx installation with the ones inside this repository (Make sure to modify the paths inside nginx.conf to yours!) If you do not update the config file, all source files (PHP, ASPX, ASHX) will be downloadable and the site will not function Drag the public folder inside of this repository and place it inside of the nginx installation To start the nginx service, run nginx.exe

PHP

Create a batch file and place this code inside of it:

@ECHO OFF
ECHO FastCGI for PHP starting...
set PATH=C:\RoblosiumDev\WebserverManager\php;%PATH%
C:\RoblosiumDev\WebserverManager\php\php-cgi.exe -b 127.0.0.1:9123

Make sure to change the paths to yours! Place the php.ini from this repository inside of the PHP installation To start the PHP service, launch the batch file

MariaDB

Go to the bin folder of the MariaDB installation, then run the command mysql_install_db.exe Wait for the database creation to succeed To start the MariaDB service, run mysqld.exe