Hdmi max resolution ubuntu 2560×1440

Although the current HDMI standard (HDMI 1.4) actually supports displays with very high resolutions, you’ll face display or graphics card problems. E.g., driver and hardware (single link HDMI) of the integrated Intel HD Graphics 3000 and 4000 restrict the resolution to 1920×1200 at 60 Hz and you’ll need a trick to use higher resolutions. In […]

Читать дальше… from Hdmi max resolution ubuntu 2560×1440

hhvm настройка

Запуск hhvm с конфигами /usr/bin/hhvm –config /etc/hhvm/php.ini –config /etc/hhvm/server.ini –user www-data –mode server -vPidFile=/var/run/hhvm/pid Устранение ошибки fastcgi-server.cpp:104] 98failed to bind to async server socket: /var/run/hhvm/sock: Address already in use Решение rm /var/run/hhvm/* […]

Читать дальше… from hhvm настройка

Самописный сертификат ssl для nginx ubuntu

Самописный сертификат ssl для nginx ubuntu Генерим openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout nginx.key -out nginx.crt Редактим конфиг server { listen 80 default_server; listen [::]:80 default_server ipv6only=on; listen 443 ssl; root /usr/share/nginx/html; index index.html index.htm; server_name your_domain.com; ssl_certificate /etc/nginx/ssl/nginx.crt; ssl_certificate_key /etc/nginx/ssl/nginx.key; location / { try_files $uri $uri/ =404; } } […]

Читать дальше… from Самописный сертификат ssl для nginx ubuntu