fix: only turn port to 80 if SSL is enabled

This commit is contained in:
Mahdi Dibaiee 2017-05-11 20:53:46 +04:30
parent 1ab8b73170
commit 22e95544f6
2 changed files with 23 additions and 17 deletions

View File

@ -16,6 +16,7 @@ module Main (call, main) where
import Control.Monad.State hiding (liftIO)
import Control.Monad.Free
import Data.List
import System.Posix (setOwnerAndGroup, getFileStatus, fileOwner)
main :: IO ()
main = return ()
@ -34,36 +35,38 @@ module Main (call, main) where
call :: Service -> App ()
call _ =
do
(AppState { arguments }) <- get
let params@(ServerParams { ssl, domain, directory, serverType, email }) = toServerParams arguments
AppState { arguments } <- get
let params@ServerParams { ssl, domain, port, directory, serverType, email } = toServerParams arguments
done <- progressText "setting up nginx configuration"
verbose $ show params
-- Turn SSL off at first, because we have not yet received a certificate
let content = show (params { ssl = False, port = "80" })
let content = if ssl then show (params { ssl = False, port = "80" }) else show params
config = "/etc/nginx/"
mainConfig = "/etc/nginx/nginx.conf"
parent = config </> "serverman-configs"
path = parent </> domain
targetDir = directory
sampleFile = targetDir </> "serverman.txt"
createCert path cmd = do
verbose $ "creating certificate in " ++ path ++ " using command " ++ cmd
result <- executeRoot cmd ["certonly", "--webroot", "--webroot-path", directory, "-d", domain, "--email", email, "--agree-tos", "-n"] "" False
case result of
Left _ -> if cmd == "letsencrypt" then createCert path "certbot" else return ()
Left _ -> when (cmd == "letsencrypt") $ createCert path "certbot"
Right stdout -> do
write stdout
when (not ("error" `isInfixOf` stdout)) $ do
unless ("error" `isInfixOf` stdout) $ do
verbose $ "writing params to " ++ path
liftIO $ writeFile path (show params)
restart
return ()
verbose $ "creating directories " ++ targetDir ++ ", " ++ parent
liftIO $ do
createDirectoryIfMissing True targetDir
createDirectoryIfMissing True parent
@ -83,6 +86,9 @@ module Main (call, main) where
liftIO $ writeFile path content
info $ "wrote your configuration file to " ++ path
liftIO $ writeFile sampleFile "Hello from serverman!"
info $ "wrote a sample file to " ++ sampleFile ++ ", you should be able to access it through " ++ domain ++ ":" ++ port ++ "/serverman.txt"
restart
when ssl $ do
@ -90,8 +96,8 @@ module Main (call, main) where
let dhparamPath = "/etc/ssl/certs/dhparam.pem"
dhExists <- liftIO $ doesFileExist dhparamPath
when (not dhExists) $ do
verbose $ "creating dhparam using openssl"
unless dhExists $ do
verbose "creating dhparam using openssl"
dhparam <- executeRoot "openssl" ["dhparam", "-out", dhparamPath, "2048"] "" True
return ()
@ -103,12 +109,12 @@ module Main (call, main) where
return ()
_ -> do
info $ "you should use letsencrypt to create a certificate for your domain"
info "you should use letsencrypt to create a certificate for your domain"
write $ "and put it in /etc/letsencrypt/live/" ++ domain ++ "/fullchain.pem"
write $ "my suggestion is running this command:"
write "my suggestion is running this command:"
write $ "sudo letsencrypt certonly --webroot --webroot-path <YOUR_APPLICATION_DIRECTORY> -d " ++ domain
write $ "for more information, see: https://certbot.eff.org/"
write "for more information, see: https://certbot.eff.org/"
return ()
where
@ -116,15 +122,15 @@ module Main (call, main) where
result <- restartService "nginx"
case result of
Left err -> return ()
Right _ -> info $ "restarted nginx"
Right _ -> info "restarted nginx"
writeIncludeStatementIfMissing path target = do
content <- readFile path
let statement = "include " ++ target ++ "/*;"
when (not (statement `isInfixOf` content)) $ do
let newContent = appendAfter content "http {" (indent . indent $ statement)
unless (statement `isInfixOf` content) $ do
let newContent = appendAfter content "http {" (indent statement)
writeFile path newContent

View File

@ -50,7 +50,7 @@ module Types ( ServerType (..)
, ("server_name", domain)
, ("rewrite", "^ https://$server_name$request_uri? permanent")
] " "
| otherwise = ""
| otherwise = []
https
| ssl = [ ("ssl_certificate", "/etc/letsencrypt/live/" ++ domain ++ "/fullchain.pem")
, ("ssl_certificate_key", "/etc/letsencrypt/live/" ++ domain ++ "/privkey.pem")
@ -81,6 +81,6 @@ module Types ( ServerType (..)
, ("proxy_set_header", "X-Forwarded-Server $host")
, ("proxy_set_header", "X-Forwarded-For $proxy_add_x_forwarded_for")
] " "
in block "server"
(semicolon (keyvalue base " "))
in block "server" $
semicolon (keyvalue base " ")
++ proxyBlock ++ "\n" ++ redirect