- Mitglied seit
- 06. Apr 2013
- Beiträge
- 14.159
- Punkte für Reaktionen
- 912
- Punkte
- 424
Die Webseiten sind parallel zu der Wordpress Seite?
Dann kannst die ja alle ähnlich anlegen mit eigenem vHost und Document root.
Backend läßt einfach auf Apache, wie bei dem wordpress vHost auch.
Im Document root der Webseite die du nur lokal nutzen willst wird dann eine .htaccess Datei angelegt auf die nur der webserver/gruppe (http) Besitz/Leserechte bekommt.
Der Inhalt in etwa
Kann man noch ausdünnen auf dein lokales Netz. In diesem Zustand stehen alle privaten Netze drin.
Dann kannst die ja alle ähnlich anlegen mit eigenem vHost und Document root.
Backend läßt einfach auf Apache, wie bei dem wordpress vHost auch.
Im Document root der Webseite die du nur lokal nutzen willst wird dann eine .htaccess Datei angelegt auf die nur der webserver/gruppe (http) Besitz/Leserechte bekommt.
Der Inhalt in etwa
Code:
Options All
# All directives except Limit directives (allow, deny, order)
AllowOverride AuthConfig FileInfo Indexes Options=All
Order deny,allow
Deny from all
Allow from localhost
# IPv4
Allow from 127.0.0.0/8 # IPv4 Loopback Addresses
Allow from 169.254.0.0/16 # IPv4 Link-local Addresses
Allow from 10.0.0.0/8 # IPv4 Normal LAN Address Space
Allow from 172.16.0.0/12 # IPv4 Normal LAN Address Space
Allow from 192.168.0.0/16 # IPv4 Normal LAN Address Space
Kann man noch ausdünnen auf dein lokales Netz. In diesem Zustand stehen alle privaten Netze drin.