Skip to content
/ core Public

☁️ Makbox core for web server (upload, share, etc.)

License

Notifications You must be signed in to change notification settings

makbox/core

Repository files navigation

core

Makbox core for web server (upload, share, etc.)
Makbox_inside

Installation

  1. Modify your server file
    for http server:
    change the files /etc/apache2/sites-available/000-deafult.conf
    and replace with this

<VirtualHost *:80>

    ServerAdmin webmaster@localhost <br>
       ServerName localhost:80  <br>
    DocumentRoot /var/www/makbox  <br>


<Directory "/var/www/makbox/shared"> <br>
 AllowOverride AuthConfig  <br>
 Order allow,deny   <br>
 Allow from all  <br>
</Directory>  <br>



ErrorLog ${APACHE_LOG_DIR}/makbox_error.log  <br>
CustomLog ${APACHE_LOG_DIR}/makbox_access.log combined  <br>

CustomLog ${APACHE_LOG_DIR}/cook.log enhance

<FilesMatch ".(cgi|shtml|phtml|php)$">
SSLOptions +StdEnvVars


<Directory /usr/lib/cgi-bin>
SSLOptions +StdEnvVars



for https server

<VirtualHost *:443>

    ServerAdmin webmaster@localhost <br>
      ServerName localhost:443  <br>
  	DocumentRoot /var/www/makbox  <br>


<Directory "/var/www/makbox/shared">  <br>
 AllowOverride AuthConfig  <br>
 Order allow,deny   <br>
 Allow from all  <br>
</Directory>  <br>


ErrorLog ${APACHE_LOG_DIR}/makbox_error.log  <br>
CustomLog ${APACHE_LOG_DIR}/makbox_access.log combined  <br>

CustomLog ${APACHE_LOG_DIR}/cook.log enhance

SSLEngine on
SSLCertificateFile /etc/apache2/ssl/your_key.crt
SSLCertificateKeyFile /etc/apache2/ssl/yoyr_key.key
SSLCertificateChainFile /etc/apache2/ssl/yoyr_key_bundle.crt

SSLProtocol all -SSLv2 -SSLv3
SSLHonorCipherOrder on
SSLCipherSuite "EECDH+ECDSA+AESGCM EECDH+aRSA+AESGCM EECDH+ECDSA+SHA384 \
EECDH+ECDSA+SHA256 EECDH+aRSA+SHA384 EECDH+aRSA+SHA256 EECDH+aRSA+RC4 \
EECDH EDH+aRSA RC4 !aNULL !eNULL !LOW !3DES !MD5 !EXP !PSK !SRP !DSS"

SSLCompression off

<FilesMatch ".(cgi|shtml|phtml|php)$">
SSLOptions +StdEnvVars

<Directory /usr/lib/cgi-bin>
SSLOptions +StdEnvVars



  1. Download core

  2. Make a direcory into /var/www
    direcory must be have name makbox
    Right: /var/www/makbox

  3. unzip the core into /var/www/makbox

  4. cut all files from subfolder /var/www/makbox/core and copy into folder /var/www/makbox
    delete subfolder core

  5. Open your browser and follow the steps for install makbox

About

☁️ Makbox core for web server (upload, share, etc.)

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages