1 Privater Link
VirtualHost is used when you want to have a separate domain name for each site. When apache chooses which virtualhost to use, it looks at the domain name part of the URL. So when that part is the same, it means you cannot split it up using VirtualHosts.
Malbüchervorlagen aus farbigen Fotos mit dem GIMP erstellen
This is the example to configure WebDAV with SSL connection.
Feed2toot automatically parses rss feeds, identifies new posts and posts them on the Mastodon social network.
Securing your Linux server is important to protect your data, intellectual property, and time, from the hands of crackers (hackers). The system administrator is responsible for security of the Linux box. In this first part of a Linux server security series, I will provide 40 hardening tips for default installation of Linux system.
In case you are on Ubuntu, edit the file /etc/apache2/apache2.conf (here we have an example of /var/www):
<Directory /var/www/>
Options Indexes FollowSymLinks
AllowOverride None
Require all granted
</Directory>
and change it to;
<Directory /var/www/>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
then,
sudo service apache2 restart
You may need to also do sudo a2enmod rewrite to enable module rewrite.
KodExplorer - A web based file manager,web IDE / browser based code editor
"Wanna Cry" - Die Cyber-Attacke traf im Mai 2017 hunderttausende von Rechnern weltweit. Die Schwachstelle: Die Software des US-Konzerns Microsoft, die auch Europa teuer zu stehen kommt. Doch warum halten viele Regierungen an den IT-Systemen fest?
Das deutsche Datenschutzrecht gilt ja schon lange, zumindest ich habe mich daran gewöhnt. Mit der europäischen Vereinheitlichung zur DSGVO ist vor allem in den letzten Monaten viel Panik entstanden. Wir geht man praktisch als Blogger damit um?
Termine im Online-Kalender, Fotos in der Dropbox, Bewerbungen bei Google Docs – ist das wirklich sicher? Ein IT-Sicherheitsprofi erklärt, wie ihr bei euren privaten Daten die Kontrolle behaltet.
Quantencomputer drohen herkömmliche Kryptographie nutzlos zu machen – so lauten regelmäßig aktuelle Warnungen. Das wäre das Ende von verschlüsselter Übertragung oder auch von Bitcoin. Doch so einfach ist das nicht.
Systemd is an init system and system manager that is widely becoming the new standard for Linux machines. While there is considerable controversy as to whether systemd is an improvement over the init systems it is replacing, the majority of distributi
Nach dem Cyberangriff auf das Datennetz der Bundesregierung stellt sich die Frage, wie solche Attacken zu vermeiden sind. "Man muss sich von der Software lösen, die die meisten Angriffe hat", meint Constanze Kurz, Sprecherin des Chaos Computer Clubs.
Die ‚Blockchain‘ wird derzeit überall als neue Wundertechnologie gepriesen. Sechs mal kommt das Wort im Koalitionsvertrag vor, immer im Kontext neuer, vielversprechender Digitaltechnologien.
There you have it, in the title. Google engineer Dianne Hackborn, who has previously explained Android’s hardware acceleration, took to Google+ again to clarify some myths about the Android operating system. This time, it’s a point of common advice that you’ll see in virtually every FAQ thread about custom ROMs and flashing: wiping battery stats
Dass die Betreiber von TOR-Servern ab und zu mal Problem mit der Justiz bekommen, ist bekannt. Es kommt halt immer wieder vor, dass Nutzer den TOR-Service für kriminelle Aktivitäten missbrauchen. Der Anfangsverdacht richtet sich dann halt oft gegen denjenigen TOR-Aktivisten am Ende der „Zwiebelschicht“, dessen IP-Adresse ermittelt werden kann.
There are a lot of ways to adjust WordPress automatic background updates. A number of constants and filters offer a range of control, from the fine-grained to the heavy-handed.
I think you may find POSIX ACL (access control lists) to be helpful. They allow a finer-grained permission model compared to the user:group:other model. I have found them to be easier to keep straight in my head since I can be more explicit and can also set the "default" behavior for a branch of the file system.
For example, you can specify each user's permissions explicitly:
setfacl -Rm d:u:userA:rwX,u:userA:rwX /var/www
setfacl -Rm d:u:userB:rwX,u:userB:rwX /var/www
Or you can do it based on some shared group:
setfacl -Rm d:g:groupA:rwX,u:groupA:rwX /var/www
And perhaps you want to keep your Apache user as read-only
setfacl -Rm d:u:www-data:rX,u:www-data:rX /var/www
Man pages:
setfacl
getfacl
Tutorial