-
Notifications
You must be signed in to change notification settings - Fork 60
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
New version doesnt work (blue screen webpage) #88
Comments
Please confirm the following
|
Hi it work thanks a lot. If i can help someone : Edit with nano or vim, like you want, in my case i use nano: And in the file change the line : i hope that can help somebody in my previous case. |
Same problem for me |
Hi do you have follow this ? If i can help someone : Edit with nano or vim, like you want, in my case i use nano: And in the file change the line : |
Hi, i have this in place allready |
Can you please share the apache and ictcore logs here |
access_log.txt Files attached |
no error in files, please make sure the following
|
Yes, everything ist correct: [company] [website] [provisioning] [security] [gatewayhub] [node] [db] [sendmail] [freeswitch] [kannel] This is the main Apache HTTP server configuration file. It contains theconfiguration directives that give the server its instructions.See URL:http://httpd.apache.org/docs/2.4/ for detailed information.In particular, seeURL:http://httpd.apache.org/docs/2.4/mod/directives.htmlfor a discussion of each configuration directive.Do NOT simply read the instructions in here without understandingwhat they do. They're here only as hints or reminders. If you are unsureconsult the online docs. You have been warned.Configuration and logfile names: If the filenames you specify for manyof the server's control files begin with "/" (or "drive:/" for Win32), theserver will use that explicit path. If the filenames do not beginwith "/", the value of ServerRoot is prepended -- so 'log/access_log'with ServerRoot set to '/www' will be interpreted by theserver as '/www/log/access_log', where as '/log/access_log' will beinterpreted as '/log/access_log'.ServerRoot: The top of the directory tree under which the server'sconfiguration, error, and log files are kept.Do not add a slash at the end of the directory path. If you pointServerRoot at a non-local disk, be sure to specify a local disk on theMutex directive, if file-based mutexes are used. If you wish to share thesame ServerRoot for multiple httpd daemons, you will need to change atleast PidFile.ServerRoot "/etc/httpd" Listen: Allows you to bind Apache to specific IP addresses and/orports, instead of the default. See also thedirective.Change this to Listen on specific IP addresses as shown below toprevent Apache from glomming onto all bound IP addresses.#Listen 12.34.56.78:80 Dynamic Shared Object (DSO) SupportTo be able to use the functionality of a module which was built as a DSO youhave to place corresponding `LoadModule' lines at this location so thedirectives contained in it are actually available before they are used.Statically compiled modules (those listed by `httpd -l') do not needto be loaded here.Example:LoadModule foo_module modules/mod_foo.soInclude conf.modules.d/*.conf If you wish httpd to run as a different user or group, you must runhttpd as root initially and it will switch.User/Group: The name (or #number) of the user/group to run httpd as.It is usually good practice to create a dedicated user and group forrunning httpd, as with most system services.User apache 'Main' server configurationThe directives in this section set up the values used by the 'main'server, which responds to any requests that aren't handled by adefinition. These values also provide defaults forany containers you may define later in the file.All of these directives may appear inside containers,in which case these default settings will be overridden for thevirtual host being defined.ServerAdmin: Your address, where problems with the server should bee-mailed. This address appears on some server-generated pages, suchas error documents. e.g. [email protected]ServerAdmin root@localhost ServerName gives the name and port that the server uses to identify itself.This can often be determined automatically, but we recommend you specifyit explicitly to prevent problems during startup.If your host doesn't have a registered DNS name, enter its IP address here.#ServerName www.example.com:80 Deny access to the entirety of your server's filesystem. You mustexplicitly permit access to web content directories in otherblocks below.AllowOverride none Require all deniedNote that from this point forward you must specifically allowparticular features to be enabled - so if something's not working asyou might expect, make sure that you have specifically enabled itbelow.DocumentRoot: The directory out of which you will serve yourdocuments. By default, all requests are taken from this directory, butsymbolic links and aliases may be used to point to other locations.DocumentRoot "/usr/ictfax" Relax access to content within /var/www.<Directory "/var/www"> <Directory "/usr/ictfax"> Further relax access to the default document root:<Directory "/var/www/html">
DirectoryIndex: sets the file that Apache will serve if a directoryis requested.DirectoryIndex index.htmlThe following lines prevent .htaccess and .htpasswd files from beingviewed by Web clients.<Files ".ht*"> ErrorLog: The location of the error log file.If you do not specify an ErrorLog directive within acontainer, error messages relating to that virtual host will belogged here. If you do define an error logfile for acontainer, that host's errors will be logged there and not here.ErrorLog "logs/error_log" LogLevel: Control the number of messages logged to the error_log.Possible values include: debug, info, notice, warn, error, crit,alert, emerg.LogLevel warn # # The following directives define some format nicknames for use with # a CustomLog directive (see below). # LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined LogFormat "%h %l %u %t \"%r\" %>s %b" common
"/var/www/cgi-bin" should be changed to whatever your ScriptAliasedCGI directory exists, if you have that configured.<Directory "/var/www/cgi-bin">
Specify a default charset for all content served; this enablesinterpretation of all content as UTF-8 by default. To use thedefault browser choice (ISO-8859-1), or to allow the META tagsin HTML content to override this choice, comment out thisdirective:AddDefaultCharset UTF-8 # # The mod_mime_magic module allows the server to use various hints from the # contents of the file itself to determine its type. The MIMEMagicFile # directive tells the module where the hint definitions are located. # MIMEMagicFile conf/magicCustomizable error responses come in three flavors:1) plain text 2) local redirects 3) external redirectsSome examples:#ErrorDocument 500 "The server made a boo boo." EnableMMAP and EnableSendfile: On systems that support it,memory-mapping or the sendfile syscall may be used to deliverfiles. This usually improves server performance, but mustbe turned off when serving from networked-mountedfilesystems or if support for these functions is otherwisebroken on your system.Defaults if commented: EnableMMAP On, EnableSendfile Off#EnableMMAP off Supplemental configurationLoad config files in the "/etc/httpd/conf.d" directory, if any.IncludeOptional conf.d/*.conf |
Hi,
I've follow all the installation guide here : https://ictfax.org/ictfax-installation-guide/ , with success but at end when i start "http://mydomain or ip/ictfax", i've a blue screen with a logo of picture, like bottom :
Do you have any idea how i can fix it?
Thanks for your help.
The text was updated successfully, but these errors were encountered: