Hello,
that works
But i had to put the iso in /var/www/html/iso/
And then i had to know the name of the iso file. (No directory listing)
Thank you very much.
RESOLVED !
Hello,
that works
But i had to put the iso in /var/www/html/iso/
And then i had to know the name of the iso file. (No directory listing)
Thank you very much.
RESOLVED !
Thank you for your response.
I am trying following isos:
And in future Win 7/8.1/Server 2016
Thanks.
Hello,
i am running a FOG server version 1.4.4 on ubuntu 16.04.3 LTS x64 with PHP 7.1.
For iPXE boot i created a iso subfolder in /var/www/fog/
Owner set to www-data:www-data.
When i try to acces the subfolder over http://{FOG-SERVER-IP}/fog/iso/ then he redirects me
to http://{FOG-SERVER-IP}/fog/management/index.php.
my /etc/apache2/sites-enabled/001-fog.conf
NameVirtualHost *:80
<VirtualHost *:80>
KeepAlive Off
ServerName {FOG-SERVER-IP}
ServerAlias vmfog
DocumentRoot /var/www/html
<Directory /var/www/html/fog/>
DirectoryIndex index.php index.html index.htm
</Directory>
RewriteEngine On
RewriteCond %{DOCUMENT_ROOT}/%{REQUEST_FILENAME} !-f
RewriteCond %{DOCUMENT_ROOT}/%{REQUEST_FILENAME} !-d
RewriteRule ^/(.*)$ /fog/api/index.php [QSA,L]
</VirtualHost>
Any ideas ?