Пример #1
0
 private void SetupNginx()
 {
     Nginx = new NginxProgram(Program.StartupPath + "\\nginx.exe")
     {
         ProgLogSection = Log.LogSection.Nginx,
         StartArgs      = "",
         StopArgs       = "-s stop",
         ConfDir        = Program.StartupPath + "\\conf\\",
         LogDir         = Program.StartupPath + "\\logs\\"
     };
 }
Пример #2
0
 private void Nginx_Image_MouseLeftButtonUp(object sender, MouseButtonEventArgs e)
 {
     NginxProgram.OpenNginxtCmd();
     e.Handled = true;
 }