epernay 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. sudo apt-get update && sudo apt-get upgrade -y
  2. sudo apt-get install apache2 php7.4 php7.4-zip php7.4-xml php7.4-xmlrpc php7.4-curl php7.4-cli -y
  3. sudo apt-get install libarchive-dev unzip pbzip2 pixz xzip -y
  4. sudo apt-get install mariadb-server
  5. sudo mysql_secure_installation
  6. sudo mysql -uroot -p
  7. CREATE DATABASE forum;
  8. CREATE USER 'wareck'@'localhost' IDENTIFIED BY 'jokary51';
  9. GRANT ALL PRIVILEGES ON forum.* TO 'wareck'@'localhost';
  10. FLUSH PRIVILEGES;
  11. sudo apt-get install phpmyadmin php7.4-mysql
  12. sudo a2enmod rewrite
  13. sudo a2enmod php7.4
  14. modifier php.ini
  15. max_input_time = 160
  16. ---
  17. > max_input_time = 60
  18. 694c694
  19. < post_max_size = 25M
  20. ---
  21. > post_max_size = 8M
  22. 846c846
  23. < upload_max_filesize = 25M
  24. ---
  25. > upload_max_filesize = 2M
  26. importer base
  27. sudo apt-get install vsftpd
  28. sudo nano /etc/vsftpd.conf
  29. anonymous_enable=NO
  30. local_enable=YES
  31. write_enable=YES
  32. local_umask=022
  33. chroot_local_user=YES
  34. user_sub_token=$USER
  35. local_root=/home/$USER/ftp
  36. importer forum
  37. importer database
  38. modifier apache2
  39. Etape 2 php5:
  40. sudo apt-get install software-properties-common
  41. wget https://packages.sury.org/php/apt.gpg
  42. sudo apt-key add apt.gpg
  43. echo "deb https://packages.sury.org/php/ $(lsb_release -sc) main" | sudo tee /etc/apt/sources.list.d/php7.list
  44. sudo apt-get install php5.6 php5.6-fpm php5.6-mysql libapache2-mod-php5.6 libapache2-mod-fcgid -y
  45. sudo systemctl start php5.6-fpm
  46. sudo a2enmod actions fcgid alias proxy_fcgi
  47. sudo systemctl restart apache2
  48. modifier fichier apache
  49. <Directory /var/www/forum>
  50. Options Indexes FollowSymLinks MultiViews
  51. AllowOverride all
  52. Order allow,deny
  53. allow from all
  54. # Uncomment this directive is you want to see apache2's
  55. # default start page (in /apache2-default) when you go to /
  56. #RedirectMatch ^/$ /apache2-default/
  57. </Directory>
  58. <FilesMatch \.php$>
  59. # For Apache version 2.4.10 and above, use SetHandler to run PHP as a fastCGI process server
  60. SetHandler "proxy:unix:/run/php/php5.6-fpm.sock|fcgi://localhost"
  61. </FilesMatch>