Skocz do zawartości

R@fi

WHT Pro
  • Zawartość

    1143
  • Rejestracja

  • Ostatnio

  • Wygrane dni

    4

R@fi wygrał w ostatnim dniu 14 Wrzesień 2013

R@fi ma najbardziej lubianą zawartość!

Reputacja

64 Pomocny

O R@fi

  • Ranga
    Rafi

Informacje profilowe

  • Płeć
    Mężczyzna

Ostatnio na profilu byli

27427 wyświetleń profilu
  1. Dodałem port 8081 plik ports.conf wygląda tak GNU nano 2.2.6 File: /etc/apache2/ports.conf # If you just change the port or add more ports here, you will likely also # have to change the VirtualHost statement in # /etc/apache2/sites-enabled/000-default.conf Listen 8080 Listen 8081 <IfModule ssl_module> Listen 8443 </IfModule> <IfModule mod_gnutls.c> Listen 8443 </IfModule> # vim: syntax=apache ts=4 sw=4 sts=4 sr noet a virtualhost zmieniłem na <VirtualHost *:8081> uzywam letsencrypta,
  2. Witajcie mam taki problem mianowicie nie wiem dlaczego nie startuje mi virtualhost dla nowej domeny mój plik cfg przedstawia sie następująco : <VirtualHost *:8080> ServerName djlive.eu ServerName www.djlive.eu ServerAdmin kontakt@djlive.eu DocumentRoot /var/www/html/djlivepl # Available loglevels: trace8, ..., trace1, debug, info, notice, warn, # error, crit, alert, emerg. # It is also possible to configure the loglevel for particular # modules, e.g. #LogLevel info ssl:warn <Directory "/var/www/html/djlivepl"> AllowOverride All Options -Indexes </Directory> ErrorLog ${APACHE_LOG_DIR}/error-djlivepl.log CustomLog ${APACHE_LOG_DIR}/access-djlivepl.log combined </VirtualHost> <VirtualHost *:8080> ServerName api.djlive.eu ServerAdmin kontakt@djlive.eu DocumentRoot /var/www/html/djliveeu/api # Available loglevels: trace8, ..., trace1, debug, info, notice, warn, # error, crit, alert, emerg. # It is also possible to configure the loglevel for particular # modules, e.g. #LogLevel info ssl:warn <Directory "/var/www/html/djliveeu/api"> AllowOverride All Options -Indexes </Directory> ErrorLog ${APACHE_LOG_DIR}/error-djliveeu-api.log CustomLog ${APACHE_LOG_DIR}/access-djliveeu-api.log combined </VirtualHost> i ngnix proxy_cache_path /tmp/nginx levels=1:2 keys_zone=static:10m inactive=4h max_size=1g; #proxy_cache_key "$request_method$host$request_uri"; server { listen 80; listen 443 ssl; include ssl-djliveeu; gzip on; gzip_disable "msie6"; gzip_vary on; gzip_proxied any; gzip_comp_level 6; gzip_buffers 16 8k; gzip_types text/plain text/css application/json application/x-javascript application/javascript text/xml application/xml application/xml+rss text/javascript; root /var/www/html/djliveeu; index index.php index.html; server_name djlive.eu api.djlive.eu app.djlive.eu; #location / { #proxy_set_header X-Real-IP $remote_addr; #proxy_set_header X-Forwarded-For $remote_addr; #proxy_set_header Host $host; #proxy_pass http://127.0.0.1:8080; #} #location /ajax/chat { #fastcgi_pass 127.0.0.1:9000; #include fastcgi.conf; #} location = /ajax/chat/chatMessages.php { fastcgi_pass unix:/var/run/php5-fpm.sock; include fastcgi.conf; } #rewrite ^/v2/(.*)/streamInfo$ /api/v2/stream.php?name=$1 last; #location = /api/v2/stream.php { #fastcgi_pass unix:/var/run/php5-fpm.sock; #include fastcgi.conf; #} location = /ajax/stream/viewers.php { fastcgi_pass unix:/var/run/php5-fpm.sock; include fastcgi.conf; } location = /ajax/privatemessages/getUnreadMessages.php { fastcgi_pass unix:/var/run/php5-fpm.sock; include fastcgi.conf; } location = /ajax/privatemessages/getMessagesList_html.php { fastcgi_pass unix:/var/run/php5-fpm.sock; include fastcgi.conf; } #location = /ajax/stream/viewers.php { # fastcgi_pass unix:/var/run/php5-fpm.sock; # include fastcgi.conf; #} location /.well-known { alias /var/www/html/djliveeu/.well-known; } location /nginx-status { stub_status on; access_log off; } location ~* \.(eot|ttf|woff|woff2)$ { add_header Access-Control-Allow-Origin *; } location / { try_files $uri @proxy; } location ~* \.(js|css|jpg|jpeg|gif|png|svg|ico|pdf|html|htm)$ { expires 14d; # proxy_pass http://127.0.0.1:8080; # proxy_set_header Host $host; # proxy_cache static; # proxy_cache_valid 200 1d; # add_header X-Proxy-Cache $upstream_cache_status; } location @proxy { proxy_pass http://127.0.0.1:8080; include /etc/nginx/proxy_params; } location ~* \.php$ { proxy_pass http://127.0.0.1:8080; fastcgi_buffers 16 16k; fastcgi_buffer_size 32k; include /etc/nginx/proxy_params; } location ~ /\.ht { deny all; } } server { listen 80; listen 443 ssl; include ssl-djliveeu; server_name www.djlive.eu; return 301 https://djlive.eu$request_uri; } server { listen 80; listen 443 ssl; include ssl-djliveeu; #root /var/www/html/djliveeu; index index.php index.html; server_name live.djlive.eu sys.djlive.eu edge.live.djlive.eu v1.djlive.eu v.djlive.eu edge.preview.djlive.eu live-hls.djlive.eu stream_main.sterowanie24.pl; location /.well-known { alias /var/www/html/djliveeu/.well-known; } location / { proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $remote_addr; proxy_set_header Host $host; proxy_set_header REMOTE_ADDR $remote_addr; proxy_pass http://10.94.94.101:80; } location ~ /\.ht { deny all; } } server { listen 80; listen 443 ssl http2; include ssl-djliveeu; location /.well-known { alias /var/www/html/djliveeu/.well-known; } #root /var/www/html/djliveeu; index index.php index.html; server_name img.djlive.eu; location /preview { proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $remote_addr; proxy_set_header Host $host; proxy_set_header REMOTE_ADDR $remote_addr; proxy_pass http://10.94.94.101:80; } location ~ /\.ht { deny all; } } Problem w tym że po wpisaniu adresu www.djlive.eu zgłasza się standardowa deafultowa strona i nie mam pomysłu jak temu zaradzić prosze o pomoc
  3. Witam serdecznie, dawnooo mnie tu nie było pozdrawiam wszystkich:) A teraz do rzeczy mam problem z letsencrypt próbuje wygenerowac darmowy certyfikat dla domeny lecz po wpisaniu komendy: wypluwa błąd To fix these errors, please make sure that your domain name was entered correctly and the DNS A/AAAA record(s) for that domain contain(s) the right IP address. pisze ze trzeba dodać rekord lecz on jest dodany A * points to 94.23.3.148 Automatic Delete A api points to 94.23.3.148 Automatic Delete A djlive.eu points to 94.23.3.148 Automatic Delete A img points to 94.23.3.148 Automatic Delete A live-hls points to 94.23.3.148 Automatic Delete A player points to 136.243.156.120 Automatic Delete CNAME autoconfig is an alias of mailconfig.ovh.net Automatic Delete CNAME autodiscover is an alias of mailconfig.ovh.net Automatic Delete CNAME ftp is an alias of djlive.eu Automatic Delete CNAME imap is an alias of ssl0.ovh.net Automatic Delete CNAME mail is an alias of ssl0.ovh.net Automatic Delete CNAME pop3 is an alias of ssl0.ovh.net Automatic Delete CNAME smtp is an alias of ssl0.ovh.net Automatic Delete MX djlive.eu mail handled by redirect.ovh.net1 Automatic Delete SRV _autodiscover._tcp.djlive.eu. SRV 0 0 443 mailconfig.ovh.net. Automatic Delete TXT djlive.eu 1|www.djlive.eu Automatic Delete TXT djlive.eu v=spf1 include:mx.ovh.com ~all Automatic Delete TXT www 3|welcome Automatic Delete TXT www l|pl Automatic Delete prosze o pomoc
  4. Polecam Miłosza z firmy Castpol Sys-Com www.castpol.pl www.sys-com.pl dobry fachowiec Edit: Pozwoliłem sobie na małą poprawkę Miłosz
  5. Witam, potrzebuje zasilić konto na Webmoney jak to zrobić ?
  6. Rekompilacja TrinityCore problem

    tak o to chodzi chyba tylko jak go zainstalowac szukam u wujka ale nic nie moge odszukac
  7. Rekompilacja TrinityCore problem

    Dzieki prawie pomogło lecz jeszcze go coś boli
  8. Witam korzystam z poradnika https://linuxiarz.pl/1807/prywatny-serwer-world-of-warcraft-na-systemie-linux/ lecz na pewnym etapie wyskakuje mi błąd w postaci na screenie oznaczyłem jaką komendę wpisuje zgodną z poradnikiem ktoś mi pomoże ?
  9. Proxmox -jest jakas dokumentacja jak go instalować ?
  10. Witam, mam takie pytanie czy znacie jakiś darmowy panel do zarządzania serwerami VPS bo widzę że hyper VM już niema
  11. Jak ja wogole nie moge sie zalogować do Direct Admina to jak mam zmienić?
  12. Może ktoś to opisac po polsku u mnie angielski słaby a translator tez robi sieczkę
  13. oto rezultat http://prntscr.com/b3lsn3 taki rezultat widnieje jak podczas instalacji wybieram ip z którym łączę sie z PuTTY Natomiast jak wybiore to ich ip idzie instalacja lecz po zainstalowaniu DA nie otwiera mi linków ani z ip które odszymalem ani z tego co jest Licencja jest przekierowana na ip które otrzymalem i podczas instalacji jak wybiore konfiguracje z moim ip to dzieje sie tak jak na screenie, natomiast jesli podczas instalacji wybiore te 2 ip DA sie instaluje bez zadnych peoblemów
×