Apache httpd.conf dosyasına Socket.IO için yapılandırma gerekiyor

Ovid Game

Centipat
Katılım
19 Mayıs 2024
Mesajlar
4
Daha fazla  
Cinsiyet
Erkek
Ben yaptığım online oyunda Socket.IO ve Node.js'i kendi SSL'i için Cloudflare kullandığım Apache sunucuda Socket.IO sürekli hata veriyor. 404 hatası alıyorum. Sanırım anladığım kadarıyla şu dosyada hata var:

/etc/httpd/conf/httpd.conf

Şu anki yapılandırma şöyle (yorum satırlarını sildim, uzamasın diye):

Apache config:
ServerRoot "/etc/httpd"

Listen 80

Include conf.modules.d/*.conf


User apache
Group apache

ServerAdmin root@localhost

<Directory />
 AllowOverride none
 Require all denied
</Directory>

<Directory "/var/www">
 AllowOverride None
 # Allow open access:
 Require all granted
</Directory>

<Directory "/var/www/html">

 Options Indexes FollowSymLinks

 Require all granted
</Directory>

<IfModule dir_module>
 DirectoryIndex index.html
</IfModule>

<Files ".ht*">
 Require all denied
</Files>

ErrorLog "logs/error_log"

LogLevel warn

<IfModule log_config_module>

 LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
 LogFormat "%h %l %u %t \"%r\" %>s %b" common

 <IfModule logio_module>
 # You need to enable mod_logio.c to use %I and %O
 LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
 </IfModule>

 CustomLog "logs/access_log" combined
</IfModule>

<IfModule alias_module>

 ScriptAlias /cgi-bin/ "/var/www/cgi-bin/"

</IfModule>

<Directory "/var/www/cgi-bin">
 AllowOverride None
 Options None
 Require all granted
</Directory>

<IfModule mime_module>

 AddType application/x-compress .Z
 AddType application/x-gzip .gz .tgz

text/html .shtml
 AddOutputFilter INCLUDES .shtml
</IfModule>

AddDefaultCharset UTF-8

<IfModule mime_magic_module>

 MIMEMagicFile conf/magic
</IfModule>

EnableSendfile on

IncludeOptional conf.d/*.conf
SSLProtocol all -SSLv2 -SSLv3 -TLSv1 -TLSv1.1
SSLCipherSuite ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384
ServerTokens Prod
ServerSignature Off
TraceEnable Off

Eğer yardım ederseniz nasıl yaptığınızı da yazar mısınız?

Teşekkürler.
 

Technopat Haberler

Geri
Yukarı