Web server

Nginx configuration for wordpress

Simple nginx configuration to launch wordpress site server { server_name yourdomain.com; root /var/www/wp; # path to wordpress index index.php; gzip on; # enable gzip compression gzip_disable “msie6”; gzip_types text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript application/javascript; location ~ /\. { deny all; # disable hidden files } location ~* /(?:uploads|files)/.*\.php$ { deny all; # disable uploaded scripts } location…

Continue Reading

Uncategorized, Web server, WINDOWS SERVER

php 7.4 + nginx quick start on Windows 10 / Server 2012 / 2016 / 2019

This article shows you how to quick install and integrate Nginx and PHP on Windows-based systems. 1. Install Nginx + PHP Basically, just download zip file and extracts it, no installation. To install Nginx Visit http://nginx.org/en/download.html Download to c:\web nginx/Windows-1.19.8 Extract to C:\web\ To Install PHP Visit http://windows.php.net/download/ Download PHP For Windows: Binaries and sources Releases (7.4 -nts-vc15-x64) Extract to C:\web\php Edit file c:\web\conf\nginx.conf location / {…

Continue Reading

WINDOWS, WINDOWS SERVER

Bootable PenDrive With third party software

There is always an “easier way” to work on Windows using software. Creating a bootable USB drive is also very easy – here’s how to do it. Just Download Rufus third party software  Click and Open rufus.exe Open Rufus 3. Once the user interface of the software opens up, plug-in your USB  4. After that, look for the “Create a bootable USB…

Continue Reading

WINDOWS, WINDOWS SERVER

Remote Desktop Troubleshooting Windows User

Remote Desktop Protocol (or RDP) is a protocol that is the most common way To gain administrative access to a Windows server. RDP is available on all Versions of Windows Server and a client (called Remote Desktop Connection) is Included ! with all versions of the. Windows desktop operating system. Connecting to your server via RDP gives you complete control…

Continue Reading

WINDOWS, WINDOWS SERVER

How to fix Credssp Authentication Error Fix In RDP

Friends here, I would like to tell you that Microsoft keeps on updating Windows updates from time to time, Microsoft in March 2018 to fix the vulnerabilities of CredSSP (Credential Security Support Provider Protocol) used by Remote Desktop Protocol in Windows Server. Has issued some security patches. But a recent update has made the CredSSP authentication error in RDP and…

Continue Reading

WINDOWS, WINDOWS SERVER

विंडोज 10 या अन्य संस्करणों में Welcome Message कैसे दिखाएं

हम आपको इस ब्लॉग में बताने जा रहे हैं कि आप विंडोज में वेलकम मैसेज कैसे देखते हैं। विंडोज स्टार्टअप स्क्रीन पर स्वागत संदेश दिखाने से उपयोगकर्ताओं को आपके कंप्यूटर का उपयोग करने से पहले बुनियादी नियमों को समझने में मदद मिलती है। इस लेख में, हम आपको बताएंगे कि विंडोज 10 या अन्य संस्करणों में स्वागत संदेश कैसे दिखाया…

Continue Reading