Это старая версия документа!
Обновление SSL сертификатов
- Подключаемся к Nginx по SSH (192.168.10.42)
- Выполняем команды:
su - service Nginx stop certbot renew service Nginx start
This is preformatted code all spaces are preserved
/** * The HelloWorldApp class implements an application that * simply displays «Hello World!» to the standard output. */ class HelloWorldApp {
public static void main(String[] args) {
System.out.println("Hello World!"); //Display the string.
}
}