Webstorm настройки index.html <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta http-equiv="X-UA-Compatible" content="IE=Edge"> <title>Example SASS -SCSS</title> <link rel="stylesheet" href="/css/style.css"> </head> <body> <h1>Hello world!</h1> <h2 class="one">Hello world 2!</h2> <h3 class="two">Hello world 3!</h3> </body> </html> style.scss /* Так делаются комментарии */ @import "reset"; //импорт других разных блоков в один файл: хедер, футер, сайдбар, …
Setting Up PHP-FPM, Apache, and Nginx with SSL on Ubuntu This guide will walk you through setting up a server where Nginx serves static frontend files and acts as a reverse proxy to Apache, which handles PHP requests via PHP-FPM. We’ll also configure SSL with Let’s Encrypt’s Certbot to ensure secure connections. 1. Install and …