|
|
| (23 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt) |
| Zeile 1: |
Zeile 1: |
| ==Datenbank Installieren==
| | * [[IDE:Installieren]] |
| <pre>
| | * [[IDE:Mediawiki Installieren]] |
| sudo apt-get install postgresql-all
| | * [[IDE:Qgis Installieren]] |
| sudo -u postgres -i
| | * [[IDE:Asp Net Core]] |
| createdb -E UTF8 -O thorsten mediawiki
| | * [[IDE:Anki]] |
| psql -d mediawiki -c "GRANT ALL PRIVILEGES ON DATABASE mediawiki TO thorsten"
| | * [[IDE:Postfix]] |
| psql -d mediawiki -c "\password thorsten" //Passwort in Entwickling "Tes"
| | * [[IDE:asp identity]] |
| exit
| | * [[IDE:Integrierte Entwicklungsumgebung (IDE)]] |
| </pre>
| |
| | |
| ==Moodle==
| |
| <pre>
| |
| cd /var/www
| |
| git clone git://git.moodle.org/moodle.git
| |
| cd moodle
| |
| git branch -a
| |
| git branch --track MOODLE_500_STABLE origin/MOODLE_500_STABLE
| |
| git checkout MOODLE_500_STABLE
| |
| </pre>
| |
| ==Moodle Entwicklungserver==
| |
| <pre>
| |
| root /var/www/moodle;
| |
| index index.php index.html index.htm;
| |
| | |
| location / {
| |
| try_files $uri $uri/ =404;
| |
| }
| |
| | |
| location ~ [^/]\.php(/|$) {
| |
| fastcgi_split_path_info ^(.+\.php)(/.+)$;
| |
| fastcgi_pass unix:/run/php/php8.1-fpm.sock;
| |
| fastcgi_index index.php;
| |
| include fastcgi_params;
| |
| fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
| |
| fastcgi_param PATH_INFO $fastcgi_path_info;
| |
| }
| |
| | |
| location ~* \.(js|css|png|jpg|jpeg|gif|ico)$ {
| |
| expires max;
| |
| log_not_found off;
| |
| }
| |
| }
| |
| </pre>
| |