Tarayıcıda Apache 2.4.7 web sunucusuna erişmeye çalışırken 403 hatası yasaklandı


9

Aynı web sunucusu bilgisayarından localhost kullanarak Apache web sunucusuna eriştiğimde , Apache2 Ubuntu varsayılan sayfasını gösterir.

Ancak 192.168.0.2 kullanarak Apache web sunucusuna eriştiğimde , 403 Yasak hatası veriyor (Yasak Bu sunucuya erişim / erişim izniniz yok).

Web Sunucusu ayrıntıları

  • Ubuntu 14.04 LTS
  • Apache 2.4.7 sürümü

Mülkiyet Komutları

www-data sudo adduser ftpuser www-data
sudo chown -R www-data:ftpuser /var/www
sudo chmod -R g+rwX /var/www

In etc / apache2 / apache2.conf dosyası

ServerName 192.168.0.2

<Directory/>
    AllowOverride All
    Require all granted
</Directory>

In etc / apache2 / port.conf dosyası

NameVirtualHost *:80
Listen *:80

Bir web sitesi için Sanal Sunucu

<VirtualHost *:80>
    ServerName mysite
    DocumentRoot /var/www/mysite
    <Directory /var/www/mysite>
        Options None FollowSymLinks
        AllowOverride None
        Require all granted
    </Directory>    
</VirtualHost>

Hangi yerde hangi ayarları yapmam gerekiyor? Lütfen yardım et...


Ben ServerName 192.168.0.2ServerName yönergesi IP numarası değil www.server.com gibi bir adı olması gerektiği gibi satır atmak . Bunun sorunu çözebileceğini düşünüyorum. SunucuAdı için varsa sunucunun adını girmeniz gerekir. SunucuAdı, aynı IP'de daha fazla web sitesine sahip olmanızı sağlayan ad tabanlı sanal barındırma olanağı sağlar.
kimse

@ kimse, zaten dosyadan kaldırıldı ama yine de başarı yok.
K Ahir

Yanıtlar:


8

1. / etc / hosts dosyanızı şu şekilde yapılandırmalısınız :

127.0.0.1   localhost
127.0.0.1   test-site
127.0.1.1   my-hostname
# The following lines are desirable for IPv6 capable hosts. etc...

test-siteİkinci "localhost" nerede . Ve my-hostnameiçinde tanımlanan "Sistem ana bilgisayar adı" dır /etc/hostname.


2. Bir Sanal Ana Makine (VH) tanımlamalı ve etkinleştirmelisiniz :

Varsayılan bir HTTP VH vardır. Yerleştirildi /etc/apache2/sites-available/. Dosya adı 000-default.conf. Düzenlemeniz (isterseniz yeniden adlandırabilir veya buna dayalı başka bazı .conf dosyaları oluşturabilirsiniz) ve bundan sonra etkinleştirmeniz gerekir.

"Yumuşak, sembolik bağlantı" oluşturarak manuel olarak etkinleştirebilirsiniz:

sudo ln -s /etc/apache2/sites-available/000-default.conf /etc/apache2/sites-enabled/

Veya aşağıdakileri yapan a2ensite adlı Apache2 aracını kullanabilirsiniz :

sudo a2ensite 000-default.conf

Diyelim ki 3 Sanal Ana Bilgisayar , etkin SSL ve kayıtlı özel alan (örnek için SOS.info) var:

/etc/apache2/sites-available/http.SOS.info.conf
/etc/apache2/sites-available/https.SOS.info.conf

Ve bu konunun amaçları için oluşturulmuş olan:

/etc/apache2/sites-available/http.test-site.conf

İlk 2 VH'nin içeriği :

$ cat /etc/apache2/sites-available/http.SOS.info.conf

<VirtualHost *:80>    
    ServerName SOS.info
    ServerAlias www.SOS.info
    ServerAdmin admin@SOS.info

    # Redirect Requests to SSL
    Redirect permanent "/" "https://SOS.info/"

    ErrorLog ${APACHE_LOG_DIR}/http.SOS.info.error.log
    CustomLog ${APACHE_LOG_DIR}/http.SOS.info.access.log combined       
</VirtualHost>

Bu, tüm HTTP isteklerini HTTPS'ye yönlendirir.

$ cat /etc/apache2/sites-available/https.SOS.info.conf

<IfModule mod_ssl.c>    
    <VirtualHost _default_:443>    
        ServerName SOS.info
        ServerAlias www.SOS.info
        ServerAdmin admin@SOS.info

        DocumentRoot /var/www/html  

        SSLEngine on    
        SSLCertificateFile /etc/ssl/certs/SOS.info.crt
        SSLCertificateKeyFile /etc/ssl/private/SOS.info.key
        SSLCertificateChainFile /etc/ssl/certs/SOS.info.root-bundle.crt
        #etc..
    </VirtualHost>    
</IfModule>

Bu HTTPS VH.

Bu iki dosyanın içeriği tek bir dosyada yayınlanabilir, ancak bu durumda yönetimi ( a2ensite/ a2dissite) daha zor olacaktır.


Üçüncü Sanal Ana Bilgisayar, bizim amaçlarımız için yaratılmış olan :

$ cat /etc/apache2/sites-available/http.test-site.conf

<VirtualHost *:80>
    ServerName test-site
    ServerAlias test-site.SOS.info

    DocumentRoot /var/www/test-site
    DirectoryIndex index.html

    ErrorLog ${APACHE_LOG_DIR}/test-site.error.log
    CustomLog ${APACHE_LOG_DIR}/test-site.access.log combined

    <Directory /var/www/test-site>
        # Allow .htaccess 
        AllowOverride All
        Allow from All
    </Directory>    
</VirtualHost>

3. Bu yapılandırma ile şunlara erişmelisiniz:

http://localhost     # pointed to the directory of the mine Domain 
https://localhost    # iin our case: /var/www/html (SOS.info), but you should get an error, because the SSL certificate

http://SOS.info      # which redirects to https://SOS.info
https://SOS.info     # you should have valid SSL certificate

http://www.SOS.info  # which is allied to http://SOS.info and redirects to https://SOS.info
https://www.SOS.info # which is allied to https://SOS.info

Ana örnekte şunlara erişmelisiniz ve :

http://test-site           # pointed to the directory /var/www/test-site
http://test-site.SOS.info  # which is allied to http://test-site

Siteyi web tarayıcısında açmayı veya sonraki komutlarla (terminalde) deneyin:

$ curl -L http://test-site/index.html
$ curl -L http://test-site.SOS.info/index.html

Tabii ki, index.htmlonların DocumentRoot bazı sayfaları olması gerekir :)



Bilgiçlikten sonraki notları bırakacağım :)


4. Uygun şekilde yapılandırılmış `/ etc / apache2 / apache2.conf` gerekir.

Ii, sunucunuzun güvenliğini artırmak için biraz zaman harcamak için iyi bir fikirdir. Bu kılavuzlar güvenlik yapılandırması hakkında şunlardır: 1 ve 2 . Buradan ücretsiz SSL sertifikası alabilirsiniz. : Bu siteler ilerlemenizi kontrol için yardımcı olacaktır 1st ve 2nd .

Yukarıdaki güvenlik kılavuzlarına göre /etc/apache2/apache2.confdosya şöyle görünmelidir:

Mutex file:${APACHE_LOCK_DIR} default

PidFile ${APACHE_PID_FILE}

Timeout 60

#KeepAlive Off
KeepAlive On
MaxKeepAliveRequests 100
KeepAliveTimeout 5

HostnameLookups Off

ErrorLog ${APACHE_LOG_DIR}/error.log
LogLevel warn

IncludeOptional mods-enabled/*.load
IncludeOptional mods-enabled/*.conf

Include ports.conf

<Directory />
    Options None FollowSymLinks 
    AllowOverride None
    Require all denied
</Directory>

<Directory /var/www/>
    Options None FollowSymLinks 
    AllowOverride None
    Require all granted
</Directory>

AccessFileName .htaccess
<FilesMatch "^\.ht">
    Require all denied
</FilesMatch>

LogFormat "%v:%p %h %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" vhost_combined
LogFormat "%h %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" combined
LogFormat "%h %l %u %t \"%r\" %>s %O" common
LogFormat "%{Referer}i -> %U" referer
LogFormat "%{User-agent}i" agent

IncludeOptional conf-enabled/*.conf
IncludeOptional sites-enabled/*.conf

# Hide Server type in the http error-pages 
ServerSignature Off
ServerTokens Prod

# Etag allows remote attackers to obtain sensitive information 
FileETag None

# Disable Trace HTTP Request
TraceEnable off

# Set cookie with HttpOnly and Secure flag.
# a2enmod headers
Header edit Set-Cookie ^(.*)$ $1;HttpOnly;Secure

# Clickjacking Attack
Header always append X-Frame-Options SAMEORIGIN

# CX-XSS Protection
Header set X-XSS-Protection "1; mode=block"

# Disable HTTP 1.0 Protocol
RewriteEngine On
RewriteCond %{THE_REQUEST} !HTTP/1.1$
RewriteRule .* - [F]

# Change the server banner @ ModSecurity 
# Send full server signature so ModSecurity can alter it
ServerTokens Full
# Alter the web server signature sent by Apache
<IfModule security2_module>
    SecServerSignature "Apache 1.3.26"
</IfModule>
Header set Server "Apache 1.3.26"
Header unset X-Powered-By

# Hde TCP Timestamp
#   gksu gedit /etc/sysctl.conf
#   >> net.ipv4.tcp_timestamps = 0
# Test: sudo hping3 SOS.info -p 443 -S --tcp-timestamp -c 1

# Disable -SSLv2 -SSLv3 and weak Ciphers
SSLProtocol all -SSLv2 -SSLv3
SSLHonorCipherOrder on
SSLCipherSuite "EECDH+ECDSA+AESGCM EECDH+aRSA+AESGCM EECDH+ECDSA+SHA384 EECDH+ECDSA+SHA256 EECDH+aRSA+SHA384 EECDH+aRSA+SHA256 EECDH+aRSA EECDH EDH+aRSA !aNULL !eNULL !LOW !3DES !MD5 !EXP !PSK !SRP !DSS !RC4"

5. Güvenlik Duvarını kurun.

Web sunucunuza harici erişime izin vermek / reddetmek için UFW (Karmaşık Güvenlik Duvarı) kullanabilirsiniz:

sudo ufw allow http
sudo ufw allow https

Yalnızca tcpprotokol kullanımına izin vermek için :

sudo ufw allow http/tcp
sudo ufw allow https/tcp

Bağlantı noktası numarasını doğrudan kullanabilirsiniz:

sudo ufw allow 80/tcp
sudo ufw allow 443/tcp

"Kurallar tablosunu" yeniden yükleyebilmeniz için:

sudo ufw reload

Ve UFW'nin gufw adlı GUI arayüzünü kullanabilirsiniz .

sudo apt update
sudo apt install gufw
gufw &

Seçim Officeprofili. Bu ayarlar: Status:ON, Incoming:Denyve Outgoing:Allowve kurallar ekleyin.


6. Bir yönlendiriciniz varsa bazı bağlantı noktalarını yönlendirmeyi unutmayın:

Bir yönlendiriciniz varsa ve web sunucunuza İnternet'ten erişilmesini istiyorsanız, bazı bağlantı noktası yönlendirmeleri eklemeyi unutmayın. Gibi bir şey bu .


000-default.conf dosyası / etc / apache2 / sites-active / klasöründe zaten var. Yine de yukarıdaki komutu kullanarak etkinleştirmeli miyim? Lütfen bana haber ver.
K Ahir

Zaten oradaysa, onları kullanmanıza gerek yoktur.
pa4080

Belki bu hatanın nedenlerini içinde bulabilirsiniz /var/log/apache2/error.log.
pa4080

Yorumumu güncelledim.
pa4080

Bu hata mesajı alınıyor ... [12 Ağu 17: 18: 37.224182 2016] [mpm_prefork: uyarı] [pid 4335] AH00169: SIGTERM'i yakaladı, kapattı [12 Ağustos 17: 18: 40.679317 2016] [mpm_prefork: uyarı] [pid 4571] AH00163: Apache / 2.4.7 (Ubuntu) PHP / 5.5.9-1ubuntu4.19 yapılandırıldı - normal işlemlere devam etme [Cum 12 17: 18: 40.679382 2016] [çekirdek: uyarı] [pid 4571] AH00094 : Komut satırı: '/ usr / sbin / apache2'
K Ahir

3

Lütfen dosyalarınızı sunduğunuz dizinin sahipliğini şu komutu kullanarak değiştirin:

sudo chown -R www-data:www:data <directory_where_you_serve_files_from>

Sorumda bahsetmediğim için üzgünüm ama zaten / var / www klasörü için belirli bir gruba ve kullanıcıya sahiplik atadım.
K Ahir

0

Sizi sorunumu çözdüğüm bu cevaba bağlamam gerekiyor.

Her şeyden önce, klasöre izinler ekleyin:

sudo chmod -R 775 /var/www

Ardından şu metni ekleyin:

<Directory /var/www/html>
  AllowOverride All
</Directory>

Bu dosyanın sonuna:

/etc/apache2/sites-available/000-default.conf
Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.