Profile Details

Toggle Sidebar
Recent updates
  • Dmb
    Dmb replied to a discussion, websites down

    Thanks for the reply. I am using the ClearOS Web Site set up from the webconfig. The default site works fine but not the other (dynamic DNS) ones. I am using Sanboxed Folder Layout. It won't let me change the folder layout. My index files are in the root directories of the website directories (/var/www/virtual/<website>/). Permissions for index.html files are -rwxrwxr--x david admin for one and -rw-rw-r-- david admin for the other two. I don't think I have a .htaccess file. I am certain I did not try to create one.

    #----------------------------------------------------------------
    # WARNING: This file is automatically created by webconfig.
    #----------------------------------------------------------------


    # Authentication mechanism
    DefineExternalAuth pwauth pipe /usr/bin/pwauth
    DefineExternalGroup pwauth pipe /usr/bin/unixgroup

    # -----------------------------------------------#
    # Web Site
    # -----------------------------------------------#

    <VirtualHost *:80>
    ServerName <URLnameofdefaultsite>
    ServerAlias *.<URLnameofdefaultsite>
    DocumentRoot /var/www/html
    ErrorLog /var/log/httpd/error_log
    CustomLog /var/log/httpd/access_log combined
    </VirtualHost>

    <Directory /var/www/html>
    Options +Indexes +FollowSymLinks -IncludesNOExec
    AllowOverride All
    Require all granted
    <FilesMatch \.php$>
    SetHandler None
    ForceType text/plain
    SetHandler application/x-httpd-php-source
    </FilesMatch>
    </Directory>

    # -----------------------------------------------#
    # Web Site
    # -----------------------------------------------#

    <VirtualHost *:80>
    ServerName <URLnameofvirtualsite1>
    ServerAlias*. <URLnameofvirtualsite1>
    DocumentRoot /var/www/virtual/<URLnameofvirtualsite1>/html
    ErrorLog /var/www/virtual/<URLnameofvirtualsite1>/logs/<URLnameofvirtualsite1>_error_log
    CustomLog /var/www/virtual/barrymcgowan.net/logs/<URLnameofvirtualsite1>_access_log combined
    </VirtualHost>

    <Directory /var/www/virtual/<URLnameofvirtualsite1>>
    Options -Indexes +FollowSymLinks -IncludesNOExec
    AllowOverride All
    Require all granted
    <FilesMatch \.php$>
    SetHandler None
    ForceType text/plain
    SetHandler application/x-httpd-php-source
    </FilesMatch>
    </Directory>

    # -----------------------------------------------#
    # Web Site
    # -----------------------------------------------#

    <VirtualHost *:80>
    ServerName <URLnameofvirtualsite2>
    ServerAlias *.<URLnameofvirtualsite2>
    DocumentRoot /var/www/virtual/<URLnameofvirtualsite2>/html
    ErrorLog /var/www/virtual/<URLnameofvirtualsite2>/logs/<URLnameofvirtualsite2>_error_log
    CustomLog /var/www/virtual/<URLnameofvirtualsite2>/logs/<URLnameofvirtualsite2>_access_log combined
    </VirtualHost>

    <Directory /var/www/virtual/<URLnameofvirtualsite2>>
    Options +Indexes +FollowSymLinks -IncludesNOExec
    AllowOverride All
    Require all granted
    <FilesMatch \.php$>
    SetHandler None
    ForceType text/plain
    SetHandler application/x-httpd-php-source
    </FilesMatch>
    </Directory>

    # -----------------------------------------------#
    # Web Site
    # -----------------------------------------------#

    <VirtualHost *:80>
    ServerName <URLnameofvirtualsite3>
    ServerAlias *.<URLnameofvirtualsite3>
    DocumentRoot /var/www/virtual/<URLnameofvirtualsite3>/html
    ErrorLog /var/www/virtual/<URLnameofvirtualsite3>/logs/9-11.dnsalias.net_error_log
    CustomLog /var/www/virtual/<URLnameofvirtualsite3>/logs/9-11.dnsalias.net_access_log combined
    </VirtualHost>

    <Directory /var/www/virtual/<URLnameofvirtualsite3>>
    Options -Indexes -FollowSymLinks -IncludesNOExec
    AllowOverride All
    Require all granted
    <FilesMatch \.php$>
    SetHandler None
    ForceType text/plain
    SetHandler application/x-httpd-php-source
    </FilesMatch>
    </Directory>



    #----------------------------------------------------------------
    # WARNING: This file is automatically created by webconfig.
    #----------------------------------------------------------------


    # Authentication mechanism
    DefineExternalAuth pwauth pipe /usr/bin/pwauth
    DefineExternalGroup pwauth pipe /usr/bin/unixgroup

    # -----------------------------------------------#
    # Web Site
    # -----------------------------------------------#

    <VirtualHost *:443>
    ServerName <URLnameofdefaultsite>
    ServerAlias *.<URLnameofdefaultsite>
    DocumentRoot /var/www/html
    ErrorLog /var/log/httpd/error_log
    CustomLog /var/log/httpd/access_log combined
    SSLEngine on
    SSLCertificateFile /etc/pki/CA/sys-0-cert.pem
    SSLCertificateKeyFile /etc/pki/CA/private/sys-0-key.pem
    SSLCACertificateFile /etc/pki/CA/ca-cert.pem
    # No weak export crypto allowed
    SSLHonorCipherOrder on
    SSLProtocol all -SSLv2 -SSLv3 -TLSv1
    SSLCipherSuite ECDH+AESGCM:DH+AESGCM:ECDH+AES256:DH+AES256:ECDH+AES128:DH+AES:ECDH+3DES:DH+3DES:RSA+AESGCM:RSA+AES:RSA+3DES:!3DES:!aNULL:!MD5
    SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown downgrade-1.0 force-response-1.0
    </VirtualHost>

    # -----------------------------------------------#
    # Web Site
    # -----------------------------------------------#

    <VirtualHost *:443>
    ServerName <URLnameofvirtualsite1>
    ServerAlias *.<URLnameofvirtualsite1>
    DocumentRoot /var/www/virtual/<URLnameofvirtualsite1>/html
    ErrorLog /var/www/virtual/<URLnameofvirtualsite1>/logs/<URLnameofvirtualsite1>_error_log
    CustomLog /var/www/virtual/<URLnameofvirtualsite1>/logs/<URLnameofvirtualsite1>_access_log combined
    SSLEngine on
    SSLCertificateFile /etc/pki/CA/sys-0-cert.pem
    SSLCertificateKeyFile /etc/pki/CA/private/sys-0-key.pem
    SSLCACertificateFile /etc/pki/CA/ca-cert.pem
    # No weak export crypto allowed
    SSLHonorCipherOrder on
    SSLProtocol all -SSLv2 -SSLv3 -TLSv1
    SSLCipherSuite ECDH+AESGCM:DH+AESGCM:ECDH+AES256:DH+AES256:ECDH+AES128:DH+AES:ECDH+3DES:DH+3DES:RSA+AESGCM:RSA+AES:RSA+3DES:!3DES:!aNULL:!MD5
    SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown downgrade-1.0 force-response-1.0
    </VirtualHost>

    # -----------------------------------------------#
    # Web Site
    # -----------------------------------------------#

    <VirtualHost *:443>
    ServerName <URLnameofvirtualsite2>
    ServerAlias *.<URLnameofvirtualsite2>
    DocumentRoot /var/www/virtual/URLnameofvirtualsite2>/html
    ErrorLog /var/www/virtual/<URLnameofvirtualsite2>/logs/<URLnameofvirtualsite2>_error_log
    CustomLog /var/www/virtual/<URLnameofvirtualsite2>/logs/<URLnameofvirtualsite2>_access_log combined
    SSLEngine on
    SSLCertificateFile /etc/pki/CA/sys-0-cert.pem
    SSLCertificateKeyFile /etc/pki/CA/private/sys-0-key.pem
    SSLCACertificateFile /etc/pki/CA/ca-cert.pem
    # No weak export crypto allowed
    SSLHonorCipherOrder on
    SSLProtocol all -SSLv2 -SSLv3 -TLSv1
    SSLCipherSuite ECDH+AESGCM:DH+AESGCM:ECDH+AES256:DH+AES256:ECDH+AES128:DH+AES:ECDH+3DES:DH+3DES:RSA+AESGCM:RSA+AES:RSA+3DES:!3DES:!aNULL:!MD5
    SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown downgrade-1.0 force-response-1.0
    </VirtualHost>

    # -----------------------------------------------#
    # Web Site
    # -----------------------------------------------#

    <VirtualHost *:443>
    ServerName <URLnameofvirtualsite3>
    ServerAlias *.<URLnameofvirtualsite3>
    DocumentRoot /var/www/virtual/<URLnameofvirtualsite3>/html
    ErrorLog /var/www/virtual/<URLnameofvirtualsite3>/logs/<URLnameofvirtualsite3>_error_log
    CustomLog /var/www/virtual/<URLnameofvirtualsite3>/logs/<URLnameofvirtualsite3>_access_log combined
    SSLEngine on
    SSLCertificateFile /etc/pki/CA/sys-0-cert.pem
    SSLCertificateKeyFile /etc/pki/CA/private/sys-0-key.pem
    SSLCACertificateFile /etc/pki/CA/ca-cert.pem
    # No weak export crypto allowed
    SSLHonorCipherOrder on
    SSLProtocol all -SSLv2 -SSLv3 -TLSv1
    SSLCipherSuite ECDH+AESGCM:DH+AESGCM:ECDH+AES256:DH+AES256:ECDH+AES128:DH+AES:ECDH+3DES:DH+3DES:RSA+AESGCM:RSA+AES:RSA+3DES:!3DES:!aNULL:!MD5
    SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown downgrade-1.0 force-response-1.0

  • Dmb
    Dmb replied to a discussion, websites down

    Thanks for the reply. When I do that a "403 Forbindden" error message:

    "Forbidden
    You don't have permission to access / on this server."

    Any ideas?

  • Dmb
    Dmb replied to a discussion, websites down

    Thanks for the reply. I had already set "Show Index" and I had already looked at the documentation.

  • Dmb
    Dmb replied to a discussion, websites down

    Thanks for the reply. It turns out my ISP was blocking the ports so I changed that but now when I go to my websites it doesn’t load index.html even though it is there as I can see it in the shared directory on the LAN. What appears looks like a directory listing with no files listed with “Index of /“ as the heading. How can I fix this?

  • Dmb
    Dmb replied to a discussion, boot loader not installing

    I am having a similar problem. When I try to install ClearOS 7.4.0.204729 on my Microserver Gen8 (with BIOS dated 6/2014 or something as I have failed trying to update the BIOS) following the online guide it asks for a biosboot partition and when I try doing that in RAID 1 the system won't boot but when I accept the automatic configuration of just installing it on sda it will boot but only if the first HDD is working so I don't have redundancy. Any ideas on how to fix this?

    Thanks.

  • Dmb
    Dmb replied to a discussion, new RAID 5 install error

    During the install process I get the following error message:

  • Dmb
    Dmb started a new discussion, new RAID 5 install error

    new RAID 5 install error

    I am trying to install ClearOS 7.4.0.204729 on an HP Microserver Gen 8 with four 12TB Seagate HDD in a level 5 RAID. It worked earlier when I accidentally didn't use RAID 5 but instead used the default configuration for the root partition but now when I try RAID 5 I get an error message telling me that I need to use a biosboot partition even though I already set one up so I have to set it up again then it appears to work but when it goes to boot up I get the following mnessage:



    Any ideas?

    Thanks.

  • Dmb
    Dmb started a new discussion, websites down

    websites down

    Hi all,

    My websites are down and I can't figure out why. Everything was working with my old Internet connection last time I checked. The (new) Internet connection works fine; I can browse the web and even access the websites from the LAN but not externally. Externally it just appears like the web page is taking a long time to load but after a while it fails.Bandwidth is not the issue. I have tried yum upgrade and I have tried restarting the server and I have tried deleting the firewall rule allowing HTTP connections and setting it up again. I am using dyn,com for dynamic DNS so I thought that might be the problem but when I check the logs on dyn.com it says all is fine.

    Any ideas on how to solve this?

    Thanks.

  • Dmb
    Dmb replied to a discussion, ddclient won't work

    I am trying to setup ddclient on my backup server and I am having trouble. I tried installing by doing and I also tried doing it manually by following the instructions that come with ddclient but it won't work.

    /etc/ddclient.conf:


    /etc/ddclient/ddclient.conf:



    Any ideas?

    Thanks.

  • Dmb
    Dmb replied to a discussion, RAID 5 HD failure

    I did:



    And it runs out 1 was a, 2 was b, 3 was c and 4 was d.

    Thanks.